From f5441a682d7e70c4b53820aa5b7cd62fd4e0ef54 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 18 Aug 2022 11:30:16 -0300 Subject: fix: for bitcoin withdrawal the exchange payto:// is not enough and the withdrawal payto should always have the reserve pub --- packages/taler-wallet-core/src/operations/transactions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts index ae4ce6999..ec499420f 100644 --- a/packages/taler-wallet-core/src/operations/transactions.ts +++ b/packages/taler-wallet-core/src/operations/transactions.ts @@ -169,7 +169,7 @@ export async function getTransactions( type: WithdrawalType.ManualTransfer, reservePub: wsr.reservePub, exchangePaytoUris: - exchangeDetails.wireInfo?.accounts.map((x) => x.payto_uri) ?? + exchangeDetails.wireInfo?.accounts.map((x) => `${x.payto_uri}?subject=${wsr.reservePub}`) ?? [], }; } -- cgit v1.2.3