diff --git a/cmd/puppeth/wizard_genesis.go b/cmd/puppeth/wizard_genesis.go index dfd7f15c4e..7faacd70c3 100644 --- a/cmd/puppeth/wizard_genesis.go +++ b/cmd/puppeth/wizard_genesis.go @@ -231,8 +231,11 @@ func (w *wizard) makeGenesis() { code, _ = contractBackend.CodeAt(ctx, multiSignWalletAddr, nil) storage = make(map[common.Hash]common.Hash) contractBackend.ForEachStorageAt(ctx, multiSignWalletAddr, nil, f) + fBalance := big.NewInt(0) // 16m + fBalance.Add(fBalance, big.NewInt(16*1000*1000)) + fBalance.Mul(fBalance, big.NewInt(1000000000000000000)) genesis.Alloc[common.HexToAddress(common.FoudationAddr)] = core.GenesisAccount{ - Balance: big.NewInt(0), + Balance: fBalance, Code: code, Storage: storage, }