core/state: fix copy of storageChange (#31874)

Missing field origvalue when copying storageChange.
This commit is contained in:
buddho 2025-05-23 19:10:10 +08:00 committed by GitHub
parent 8f598e85ad
commit 8781e93013
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -408,6 +408,7 @@ func (ch storageChange) copy() journalEntry {
account: ch.account,
key: ch.key,
prevvalue: ch.prevvalue,
origvalue: ch.origvalue,
}
}