Remove clutter
This commit is contained in:
parent
cec39ea18e
commit
75904fb3af
|
@ -40,9 +40,6 @@ contract LiquidPledging is LiquidPledgingBase {
|
||||||
transfer(idDonor, idNote, amount, idReceiver);
|
transfer(idDonor, idNote, amount, idReceiver);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64 public test;
|
|
||||||
uint64 public test2;
|
|
||||||
|
|
||||||
function transfer(uint64 idSender, uint64 idNote, uint amount, uint64 idReceiver) {
|
function transfer(uint64 idSender, uint64 idNote, uint amount, uint64 idReceiver) {
|
||||||
|
|
||||||
idNote = normalizeNote(idNote);
|
idNote = normalizeNote(idNote);
|
||||||
|
|
|
@ -332,7 +332,6 @@ contract("LiquidPledging", (accounts) => {
|
||||||
await liquidPledging.withdraw(4, web3.toWei(0.1), {from: donor1});
|
await liquidPledging.withdraw(4, web3.toWei(0.1), {from: donor1});
|
||||||
|
|
||||||
await liquidPledging.withdraw(8, web3.toWei(0.03), {from: donor1});
|
await liquidPledging.withdraw(8, web3.toWei(0.03), {from: donor1});
|
||||||
const test = await liquidPledging.test();
|
|
||||||
await liquidPledging.withdraw(9, web3.toWei(0.01), {from: donor1});
|
await liquidPledging.withdraw(9, web3.toWei(0.01), {from: donor1});
|
||||||
|
|
||||||
const initialBalance = await web3.eth.getBalance(donor1);
|
const initialBalance = await web3.eth.getBalance(donor1);
|
||||||
|
|
Loading…
Reference in New Issue