give more balance to testrpc accounts

includes fix to MultisigWallet test because bigger balances result in
floating point errors (see #204)
pull/283/head
Francisco Giordano 8 years ago
parent cd47fbe953
commit 4d55d8fa8e
  1. 14
      scripts/test.sh
  2. 2
      test/MultisigWallet.js

@ -4,7 +4,19 @@ output=$(nc -z localhost 8545; echo $?)
[ $output -eq "0" ] && trpc_running=true [ $output -eq "0" ] && trpc_running=true
if [ ! $trpc_running ]; then if [ ! $trpc_running ]; then
echo "Starting our own testrpc node instance" echo "Starting our own testrpc node instance"
testrpc > /dev/null & # we give each account 1M ether, needed for high-value tests
testrpc \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501200,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501201,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501202,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501203,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501204,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501205,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501206,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501207,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501208,1000000000000000000000000" \
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501209,1000000000000000000000000" \
> /dev/null &
trpc_pid=$! trpc_pid=$!
fi fi
./node_modules/truffle/cli.js test ./node_modules/truffle/cli.js test

@ -52,7 +52,7 @@ contract('MultisigWallet', function(accounts) {
//Balance of account2 should have increased //Balance of account2 should have increased
let newAccountBalance = web3.eth.getBalance(accounts[2]); 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() { it('should prevent execution of transaction if above daily limit', async function() {

Loading…
Cancel
Save