diff options
-rw-r--r-- | packages/taler-wallet-core/src/operations/balance.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/balance.ts b/packages/taler-wallet-core/src/operations/balance.ts index af88181c0..0fcab0542 100644 --- a/packages/taler-wallet-core/src/operations/balance.ts +++ b/packages/taler-wallet-core/src/operations/balance.ts @@ -551,6 +551,9 @@ export async function getPeerPaymentBalanceDetailsInTx( }); await tx.refreshGroups.iter().forEach((r) => { + if (r.currency != req.currency) { + return; + } balanceAvailable = Amounts.add( balanceAvailable, computeRefreshGroupAvailableAmount(r), |