Skip to content

Commit 0bccb7b

Browse files
0xmountaintopHAOYUatHZ
and
HAOYUatHZ
authored
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>
1 parent 55b03ff commit 0bccb7b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

core/state/dump.go

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ func (d iterativeDump) OnAccount(addr common.Address, account DumpAccount) {
107107
Root: account.Root,
108108
KeccakCodeHash: account.KeccakCodeHash,
109109
PoseidonCodeHash: account.PoseidonCodeHash,
110+
CodeSize: account.CodeSize,
110111
Code: account.Code,
111112
Storage: account.Storage,
112113
SecureKey: account.SecureKey,

params/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
VersionMajor = 5 // Major version component of the current release
2626
VersionMinor = 1 // Minor version component of the current release
27-
VersionPatch = 31 // Patch version component of the current release
27+
VersionPatch = 32 // Patch version component of the current release
2828
VersionMeta = "mainnet" // Version metadata to append to the version string
2929
)
3030

0 commit comments

Comments
 (0)