core: fix account reference

This commit is contained in:
Felix Lange 2024-12-02 12:17:03 +01:00 committed by lightclient
parent 09d1a1632b
commit ab2f0700d8
No known key found for this signature in database
GPG key ID: 75C916AFEE20183E

View file

@ -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.