mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +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,
|
account: ch.account,
|
||||||
key: ch.key,
|
key: ch.key,
|
||||||
prevvalue: ch.prevvalue,
|
prevvalue: ch.prevvalue,
|
||||||
|
origvalue: ch.origvalue,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue