Bump test genesis token amount

This commit is contained in:
Łukasz Magiera
2019-09-24 13:02:54 +02:00
parent a21846aa6e
commit 5fa1a74e74
8 changed files with 21 additions and 28 deletions
+2 -2
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(10000000),
w: types.NewInt(1000000000),
}
b, err := gen.MakeGenesisBlock(bs, alloc, gmc, 100000)
@@ -76,7 +76,7 @@ func MakeGenesis(outFile string) func(bs dtypes.ChainBlockstore, w *wallet.Walle
}
addrs := map[address.Address]types.BigInt{
minerAddr: types.NewInt(50000000),
minerAddr: types.NewInt(5000000000),
}
b, err := gen.MakeGenesisBlock(bs, addrs, gmc, 100000)