Skip to content

Commit fd1136a

Browse files
fixup! feat(wallet): the wallet now only fetches UTXOs on tx history change
1 parent 9dde8a4 commit fd1136a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/wallet/src/services/TransactionsTracker.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,10 @@ const findIntersectionAndUpdateTxStore = ({
176176
combinator: exhaustMap,
177177
equals: transactionsEquals,
178178
onFatalError,
179+
// eslint-disable-next-line sonarjs/cognitive-complexity
179180
provider: async () => {
180-
// eslint-disable-next-line no-constant-condition
181181
let rollbackOcurred = false;
182+
// eslint-disable-next-line no-constant-condition
182183
while (true) {
183184
const lastStoredTransaction: Cardano.HydratedTx | undefined = localTransactions[localTransactions.length - 1];
184185

0 commit comments

Comments
 (0)