Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
colinlyguo committed Dec 12, 2024
1 parent bc1e9ad commit 99f9020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup/internal/controller/sender/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func (s *Sender) SendTransaction(contextID string, target *common.Address, data
return common.Hash{}, fmt.Errorf("failed to send transaction, err: %w", err)
}

s.transactionSigner.SetNonce(s.transactionSigner.GetNonce() + 1)
s.transactionSigner.SetNonce(signedTx.Nonce() + 1)

return signedTx.Hash(), nil
}
Expand Down

0 comments on commit 99f9020

Please sign in to comment.