mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd/geth: fix compilation err
This commit is contained in:
parent
b77ff88ef2
commit
eb9e6d755e
1 changed files with 5 additions and 5 deletions
|
|
@ -572,7 +572,7 @@ func dumpState(ctx *cli.Context) error {
|
|||
Nonce: account.Nonce,
|
||||
Root: account.Root.Bytes(),
|
||||
CodeHash: account.CodeHash,
|
||||
SecureKey: accIt.Hash().Bytes(),
|
||||
AddressHash: accIt.Hash().Bytes(),
|
||||
}
|
||||
if !conf.SkipCode && !bytes.Equal(account.CodeHash, types.EmptyCodeHash.Bytes()) {
|
||||
da.Code = rawdb.ReadCode(db, common.BytesToHash(account.CodeHash))
|
||||
|
|
|
|||
Loading…
Reference in a new issue