Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 5c3a1af

Browse files
authored
Gave tester a fat starting balance like it had pre refactor
1 parent ed1fc74 commit 5c3a1af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/tools/tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
base_alloc = {}
2525
minimal_alloc = {}
2626
for a in accounts:
27-
base_alloc[a] = {'balance': 10**18}
27+
base_alloc[a] = {'balance': 10**24}
2828
for i in range(1, 9):
2929
base_alloc[int_to_addr(i)] = {'balance': 1}
3030
minimal_alloc[int_to_addr(i)] = {'balance': 1}

0 commit comments

Comments
 (0)