We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd1136a commit 719a41bCopy full SHA for 719a41b
packages/wallet/src/services/TransactionsTracker.ts
@@ -201,7 +201,10 @@ const findIntersectionAndUpdateTxStore = ({
201
202
// Fetching transactions from scratch, nothing else to do here.
203
if (lowerBound === undefined) {
204
- if (newTransactions.length > 0) store.setAll(newTransactions);
+ if (newTransactions.length > 0) {
205
+ localTransactions = newTransactions;
206
+ store.setAll(newTransactions);
207
+ }
208
209
return newTransactions;
210
}
0 commit comments