From 02234a62fd1fa73f1f08a1e36bc4e613596eae15 Mon Sep 17 00:00:00 2001 From: Klimov Sergey Date: Wed, 14 May 2025 05:14:34 +0800 Subject: [PATCH] fix storageChange.copy() --- core/state/journal.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/state/journal.go b/core/state/journal.go index 13332dbd793..f3f976f24fe 100644 --- a/core/state/journal.go +++ b/core/state/journal.go @@ -408,6 +408,7 @@ func (ch storageChange) copy() journalEntry { account: ch.account, key: ch.key, prevvalue: ch.prevvalue, + origvalue: ch.origvalue, } }