From a5325f346f07f628e76c08062601f414cb78aa85 Mon Sep 17 00:00:00 2001 From: parmarrushabh Date: Tue, 23 Apr 2019 11:15:00 +0530 Subject: [PATCH] changes in foundation wallet address) --- cmd/puppeth/wizard_genesis.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/puppeth/wizard_genesis.go b/cmd/puppeth/wizard_genesis.go index 3c2dfbe0fe..dd2e55e298 100644 --- a/cmd/puppeth/wizard_genesis.go +++ b/cmd/puppeth/wizard_genesis.go @@ -232,7 +232,7 @@ func (w *wizard) makeGenesis() { 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.Add(fBalance, big.NewInt(10*0)) fBalance.Mul(fBalance, big.NewInt(1000000000000000000)) genesis.Alloc[common.HexToAddress(common.FoudationAddr)] = core.GenesisAccount{ Balance: fBalance, @@ -299,10 +299,10 @@ func (w *wizard) makeGenesis() { contractBackend.ForEachStorageAt(ctx, multiSignWalletTeamAddr, nil, f) // Team balance. balance := big.NewInt(0) // 12m - balance.Add(balance, big.NewInt(12*1000*1000)) + balance.Add(balance, big.NewInt(12*0)) balance.Mul(balance, big.NewInt(1000000000000000000)) subBalance := big.NewInt(0) // i * 50k - subBalance.Add(subBalance, big.NewInt(int64(len(signers))*50*1000)) + subBalance.Add(subBalance, big.NewInt(int64(len(signers))*50*0)) subBalance.Mul(subBalance, big.NewInt(1000000000000000000)) balance.Sub(balance, subBalance) // 12m - i * 50k genesis.Alloc[common.HexToAddress(common.TeamAddr)] = core.GenesisAccount{