mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-22 07:49:26 +00:00
core/types: fix merging state mutations (EIP-7928) (#34640)
This commit is contained in:
parent
6a79e3693b
commit
60096253be
1 changed files with 1 additions and 0 deletions
|
|
@ -104,6 +104,7 @@ func (s StateMutations) Merge(next StateMutations) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
s[account] = mut
|
||||||
} else {
|
} else {
|
||||||
s[account] = *diff.Copy()
|
s[account] = *diff.Copy()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue