core: ignore 0x prefix for code in JSON genesis blocks (#3656)

This commit is contained in:
Martin Holst Swende 2017-02-13 03:36:50 +01:00 committed by Felix Lange
parent 085987ff2c
commit 564b60520c
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block,
for addr, account := range genesis.Alloc {
address := common.HexToAddress(addr)
statedb.AddBalance(address, common.String2Big(account.Balance))
statedb.SetCode(address, common.Hex2Bytes(account.Code))
statedb.SetCode(address, common.FromHex(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))