mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
fix(trace): fix statesAffected in traceLastNAddressAccount (#367)
* fix(trace): fix * Update version.go
This commit is contained in:
parent
3cf5ba882d
commit
8c5bf3069f
2 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ func traceLastNAddressAccount(n int) traceFunc {
|
|||
address := common.Address(stack.data[stack.len()-1-n].Bytes20())
|
||||
state := getWrappedAccountForAddr(l, address)
|
||||
extraData.StateList = append(extraData.StateList, state)
|
||||
l.statesAffected[scope.Contract.Address()] = struct{}{}
|
||||
l.statesAffected[address] = struct{}{}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ import (
|
|||
const (
|
||||
VersionMajor = 4 // Major version component of the current release
|
||||
VersionMinor = 2 // Minor version component of the current release
|
||||
VersionPatch = 6 // Patch version component of the current release
|
||||
VersionPatch = 7 // Patch version component of the current release
|
||||
VersionMeta = "sepolia" // Version metadata to append to the version string
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue