fix account balances to cover costs and collateral

This commit is contained in:
whyrusleeping
2019-09-26 12:23:03 -07:00
parent 18211b7bee
commit 0a0a4d30aa
3 changed files with 4 additions and 4 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(1000000000),
w: types.FromFil(10000),
}
b, err := gen.MakeGenesisBlock(bs, alloc, gmc, 100000)