remove extra slash

This commit is contained in:
Florian Dold 2021-08-07 18:02:16 +02:00
parent c077c0d8c0
commit f40593185a
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -210,7 +210,7 @@ async function processDepositGroupImpl(
continue;
}
const perm = depositPermissions[i];
const url = new URL(`/coins/${perm.coin_pub}/deposit`, perm.exchange_url);
const url = new URL(`coins/${perm.coin_pub}/deposit`, perm.exchange_url);
const httpResp = await ws.http.postJson(url.href, {
contribution: Amounts.stringify(perm.contribution),
wire: depositGroup.wire,