summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/withdraw.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-09-03 17:29:09 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-09-03 17:29:09 +0530
commit09b5bfe0db8271c0c7531e22e3123d7e29e2bb1e (patch)
tree0b8283ff9e57c6fbcbf317a2ac1363108248c9b8 /packages/taler-wallet-core/src/operations/withdraw.ts
parent8a3ac7f08b114360118bf58a38983401107a62cf (diff)
downloadwallet-core-09b5bfe0db8271c0c7531e22e3123d7e29e2bb1e.tar.gz
wallet-core-09b5bfe0db8271c0c7531e22e3123d7e29e2bb1e.tar.bz2
wallet-core-09b5bfe0db8271c0c7531e22e3123d7e29e2bb1e.zip
towards auto-refresh
Diffstat (limited to 'packages/taler-wallet-core/src/operations/withdraw.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/withdraw.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts
index c719f7ab8..4070e39f4 100644
--- a/packages/taler-wallet-core/src/operations/withdraw.ts
+++ b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -620,6 +620,8 @@ async function processWithdrawGroupImpl(
return;
}
+ await updateExchangeFromUrl(ws, withdrawalGroup.exchangeBaseUrl);
+
const numTotalCoins = withdrawalGroup.denomsSel.selectedDenoms
.map((x) => x.count)
.reduce((a, b) => a + b);