fix account balances to make tests pass

This commit is contained in:
whyrusleeping
2019-09-19 22:25:10 -07:00
parent 2d5b88ce84
commit 3154374132
8 changed files with 91 additions and 74 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ func MakeGenesisMem(out io.Writer) func(bs dtypes.ChainBlockstore, w *wallet.Wal
PeerIDs: []peer.ID{"peerID 1"},
}
alloc := map[address.Address]types.BigInt{
w: types.NewInt(100000),
w: types.NewInt(10000000),
}
b, err := gen.MakeGenesisBlock(bs, alloc, gmc, 100000)