diff --git a/core/state/dump.go b/core/state/dump.go index 17b5f078ac6e..487a9f49b542 100644 --- a/core/state/dump.go +++ b/core/state/dump.go @@ -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, diff --git a/params/version.go b/params/version.go index 5b0b627548e3..129463c0a4cb 100644 --- a/params/version.go +++ b/params/version.go @@ -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 )