diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/genesis.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/genesis.go b/core/genesis.go index 3baed72d8..ed47d5b42 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -255,6 +255,7 @@ func (g *Genesis) ToBlock(db ethdb.Database) *types.Block { govStateHelper := vm.GovernanceStateHelper{statedb} for addr, account := range g.Alloc { + fmt.Println(account) statedb.AddBalance(addr, new(big.Int).Sub(account.Balance, account.Staked)) statedb.SetCode(addr, account.Code) statedb.SetNonce(addr, account.Nonce) |