mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
core: fix account reference
This commit is contained in:
parent
09d1a1632b
commit
ab2f0700d8
1 changed files with 1 additions and 1 deletions
|
|
@ -463,7 +463,7 @@ func (st *stateTransition) execute() (*ExecutionResult, error) {
|
||||||
|
|
||||||
if !contractCreation {
|
if !contractCreation {
|
||||||
// Increment the nonce for the next transaction
|
// Increment the nonce for the next transaction
|
||||||
st.state.SetNonce(msg.From, st.state.GetNonce(sender.Address())+1)
|
st.state.SetNonce(msg.From, st.state.GetNonce(msg.From)+1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check authorizations list validity.
|
// Check authorizations list validity.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue