Skip to content

Commit

Permalink
Merge pull request #71 from moreal/bugfix-nonce-mismatch
Browse files Browse the repository at this point in the history
Correct nonce mismatch
  • Loading branch information
moreal authored Dec 4, 2023
2 parents fdc3009 + ee6819c commit 7467985
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sync/upstream/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ export async function processUpstreamEvents(
downstreamAccount,
downstreamNetworkId,
downstreamGenesisHash,
downstreamNextTxNonce + BigInt(unloadGarageEvents.length),
downstreamNextTxNonce +
BigInt(unloadGarageEventsWithValidMemo.length),
)),
];

Expand Down

0 comments on commit 7467985

Please sign in to comment.