From 68b4d0c4de7df98190fcc07c11fa809622b27bfc Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 18 Apr 2022 21:23:25 +0200 Subject: wallet-cli: allow generating segwit addresses --- packages/taler-wallet-core/src/operations/withdraw.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'packages/taler-wallet-core/src/operations') diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index 6d45599dc..66bfd6b91 100644 --- a/packages/taler-wallet-core/src/operations/withdraw.ts +++ b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -1016,6 +1016,15 @@ export async function getExchangeWithdrawalInfo( instructedAmount, denoms, ); + + if (selectedDenoms.selectedDenoms.length === 0) { + throw Error( + `unable to withdraw from ${exchangeBaseUrl}, can't select denominations for instructed amount (${Amounts.stringify( + instructedAmount, + )}`, + ); + } + const exchangeWireAccounts: string[] = []; for (const account of exchangeDetails.wireInfo.accounts) { exchangeWireAccounts.push(account.payto_uri); -- cgit v1.2.3