Skip to content

Commit

Permalink
core/genesis: add support for setting nonce in 'alloc'
Browse files Browse the repository at this point in the history
This is to be able to set `pre`-state when performing blockchain tests through Hive, we need to be able to set the nonce.
  • Loading branch information
holiman committed Jan 24, 2017
1 parent f1069a3 commit da92f5b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block,
Code string
Storage map[string]string
Balance string
Nonce string
}
}

Expand All @@ -70,6 +71,7 @@ func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block,
address := common.HexToAddress(addr)
statedb.AddBalance(address, common.String2Big(account.Balance))
statedb.SetCode(address, common.Hex2Bytes(account.Code))
statedb.SetNonce(address, common.String2Big(account.Nonce).Uint64())
for key, value := range account.Storage {
statedb.SetState(address, common.HexToHash(key), common.HexToHash(value))
}
Expand Down

0 comments on commit da92f5b

Please sign in to comment.