We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d7f56 commit 6542a1dCopy full SHA for 6542a1d
src/composables/transactionList.ts
@@ -286,6 +286,15 @@ export function useTransactionList({ store }: IDefaultComposableOptions) {
286
}
287
});
288
289
+ (transactions.value[address]?.loaded?.filter(({ pending }) => pending) || [])
290
+ .forEach((transaction) => {
291
+ const newTransaction = preparedTransactions
292
+ .find((tx) => tx.hash === transaction.hash && !tx.pending);
293
+ if (newTransaction) {
294
+ updateAccountTransaction(address, newTransaction);
295
+ }
296
+ });
297
+
298
preparedTransactions = recent
299
? preparedTransactions.slice(0, limit)
300
: preparedTransactions;
0 commit comments