From 062535770e1dabcdd2e1655f41ce01006a38af1a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 1 May 2017 23:00:47 +0200 Subject: actually POST to /payback instead of just GETting it --- src/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wallet.ts') diff --git a/src/wallet.ts b/src/wallet.ts index b39cbd9e9..600b9885f 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -2156,7 +2156,7 @@ export class Wallet { let paybackRequest = await this.cryptoApi.createPaybackRequest(coin); let reqUrl = new URI("payback").absoluteTo(coin.exchangeBaseUrl); - let resp = await this.http.get(reqUrl.href()); + let resp = await this.http.postJson(reqUrl.href(), paybackRequest); if (resp.status != 200) { throw Error(); } -- cgit v1.2.3