mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-12 20:58:33 +00:00
core/state: fix copy of storageChange (#31874)
Missing field origvalue when copying storageChange.
This commit is contained in:
parent
8f598e85ad
commit
8781e93013
1 changed files with 1 additions and 0 deletions
|
|
@ -408,6 +408,7 @@ func (ch storageChange) copy() journalEntry {
|
|||
account: ch.account,
|
||||
key: ch.key,
|
||||
prevvalue: ch.prevvalue,
|
||||
origvalue: ch.origvalue,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue