mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
fix(state): fix iterativeDump.OnAccount (#649)
* fix `iterativeDump.OnAccount` * chore: auto version bump [bot] * chore: auto version bump [bot] --------- Co-authored-by: HAOYUatHZ <HAOYUatHZ@users.noreply.github.com>
This commit is contained in:
parent
55b03ff405
commit
0bccb7bc50
2 changed files with 2 additions and 1 deletions
|
|
@ -107,6 +107,7 @@ func (d iterativeDump) OnAccount(addr common.Address, account DumpAccount) {
|
||||||
Root: account.Root,
|
Root: account.Root,
|
||||||
KeccakCodeHash: account.KeccakCodeHash,
|
KeccakCodeHash: account.KeccakCodeHash,
|
||||||
PoseidonCodeHash: account.PoseidonCodeHash,
|
PoseidonCodeHash: account.PoseidonCodeHash,
|
||||||
|
CodeSize: account.CodeSize,
|
||||||
Code: account.Code,
|
Code: account.Code,
|
||||||
Storage: account.Storage,
|
Storage: account.Storage,
|
||||||
SecureKey: account.SecureKey,
|
SecureKey: account.SecureKey,
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ import (
|
||||||
const (
|
const (
|
||||||
VersionMajor = 5 // Major version component of the current release
|
VersionMajor = 5 // Major version component of the current release
|
||||||
VersionMinor = 1 // Minor version component of the current release
|
VersionMinor = 1 // Minor version component of the current release
|
||||||
VersionPatch = 31 // Patch version component of the current release
|
VersionPatch = 32 // Patch version component of the current release
|
||||||
VersionMeta = "mainnet" // Version metadata to append to the version string
|
VersionMeta = "mainnet" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue