Skip to content

Commit

Permalink
fix: counting tx nonce (#10884)
Browse files Browse the repository at this point in the history
  • Loading branch information
guanbinrui committed Sep 27, 2023
1 parent 04dc4a2 commit 89f9d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web3-providers/src/Web3/EVM/state/Message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class Message extends MessageState<MessageRequest, MessageResponse> {
chainId,
})

if (nonce + 1 !== config.nonce) {
if (nonce !== config.nonce) {
request.arguments.params = [
{
...config,
Expand Down

0 comments on commit 89f9d49

Please sign in to comment.