give more balance to testrpc accounts
includes fix to MultisigWallet test because bigger balances result in floating point errors (see #204)
This commit is contained in:
@ -52,7 +52,7 @@ contract('MultisigWallet', function(accounts) {
|
||||
|
||||
//Balance of account2 should have increased
|
||||
let newAccountBalance = web3.eth.getBalance(accounts[2]);
|
||||
assert.isTrue(newAccountBalance > accountBalance);
|
||||
assert.isTrue(newAccountBalance.greaterThan(accountBalance));
|
||||
});
|
||||
|
||||
it('should prevent execution of transaction if above daily limit', async function() {
|
||||
|
||||
Reference in New Issue
Block a user