core/genesis: add support for setting nonce in 'alloc'

This is to be able to set `pre`-state when performing blockchain tests through Hive, we need to be able to set the nonce.
release/1.5
Martin Holst Swende 8 years ago
parent f1069a30b9
commit da92f5b2d6
  1. 2
      core/genesis.go

@ -57,6 +57,7 @@ func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block,
Code string
Storage map[string]string
Balance string
Nonce string
}
}
@ -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))
}

Loading…
Cancel
Save