diff --git a/core/state/state_object.go b/core/state/state_object.go index 21a3a833e69..c3745e63354 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -253,7 +253,6 @@ func (so *stateObject) setState(key *libcommon.Hash, value uint256.Int) { // updateTrie writes cached storage modifications into the object's storage trie. func (so *stateObject) updateTrie(stateWriter StateWriter) error { for key, value := range so.dirtyStorage { - value := value original := so.blockOriginStorage[key] so.originStorage[key] = value if err := stateWriter.WriteAccountStorage(so.address, so.data.GetIncarnation(), &key, &original, &value); err != nil {