From 0bccb7bc50a99abb210124f8625016c17d2b9061 Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Fri, 5 Apr 2024 11:48:09 +0800 Subject: [PATCH] fix(state): fix `iterativeDump.OnAccount` (#649) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix `iterativeDump.OnAccount` * chore: auto version bump [bot] * chore: auto version bump [bot] --------- Co-authored-by: HAOYUatHZ --- core/state/dump.go | 1 + params/version.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/state/dump.go b/core/state/dump.go index 17b5f078ac..487a9f49b5 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 5b0b627548..129463c0a4 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 )