commit f5441a682d7e70c4b53820aa5b7cd62fd4e0ef54 parent 16777ba20564d8b002e33a01afa3ea49ca715cce Author: Sebastian <sebasjm@gmail.com> Date: Thu, 18 Aug 2022 11:30:16 -0300 fix: for bitcoin withdrawal the exchange payto:// is not enough and the withdrawal payto should always have the reserve pub Diffstat:
| M | 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 @@ -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}`) ?? [], }; }