Skip to content

Commit 05b94c0

Browse files
authored
Merge branch 'develop' into new-zkevm
2 parents ca5287c + 0bccb7b commit 05b94c0

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)