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:
Francisco Giordano
2017-06-30 14:54:49 -03:00
parent cd47fbe953
commit 4d55d8fa8e
2 changed files with 14 additions and 2 deletions

View File

@ -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() {