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:
HAOYUatHZ 2024-04-05 11:48:09 +08:00 committed by GitHub
parent 55b03ff405
commit 0bccb7bc50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -107,6 +107,7 @@ func (d iterativeDump) OnAccount(addr common.Address, account DumpAccount) {
Root: account.Root,
KeccakCodeHash: account.KeccakCodeHash,
PoseidonCodeHash: account.PoseidonCodeHash,
CodeSize: account.CodeSize,
Code: account.Code,
Storage: account.Storage,
SecureKey: account.SecureKey,

View file

@ -24,7 +24,7 @@ import (
const (
VersionMajor = 5 // Major 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
)