summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-07-27 23:51:41 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-07-27 23:51:41 +0530
commit472307a607b046e32f50b05a8be44c47c4b153d4 (patch)
tree85dc353b196be506fa20e8a917047320e9460382 /src
parenta4f1127e0adc4fca173a4b66419f87c0d387fb8a (diff)
downloadwallet-core-472307a607b046e32f50b05a8be44c47c4b153d4.tar.gz
wallet-core-472307a607b046e32f50b05a8be44c47c4b153d4.tar.bz2
wallet-core-472307a607b046e32f50b05a8be44c47c4b153d4.zip
fix withdrawal operation API path
Diffstat (limited to 'src')
-rw-r--r--src/operations/withdraw.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operations/withdraw.ts b/src/operations/withdraw.ts
index 9f6804b2b..6f591602d 100644
--- a/src/operations/withdraw.ts
+++ b/src/operations/withdraw.ts
@@ -142,7 +142,7 @@ export async function getBankWithdrawalInfo(
throw Error(`can't parse URL ${talerWithdrawUri}`);
}
const reqUrl = new URL(
- `api/withdraw-operations/${uriResult.withdrawalOperationId}`,
+ `api/withdraw-operation/${uriResult.withdrawalOperationId}`,
uriResult.bankIntegrationApiBaseUrl,
);
const resp = await ws.http.get(reqUrl.href);