aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-10-01 20:45:36 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-10-01 20:46:22 +0200
commit1a23fbcb4fdad661feb9ea923761f7e02d7f6e8d (patch)
treeb34c72c43f69cd755b1aa5acff8a52345628bd3e /src/wallet.ts
parent831d27c4df6412a6e1920341cbe6770a994a5804 (diff)
downloadwallet-core-1a23fbcb4fdad661feb9ea923761f7e02d7f6e8d.tar.xz
adapt to instance changes
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 175a6dba1..25857870c 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -3467,10 +3467,7 @@ export class Wallet {
}
const tipStatusUrl = new URI(res.tipPickupUrl)
- .addQuery({
- instance: res.merchantInstance,
- tip_id: res.tipId,
- })
+ .addQuery({ tip_id: res.tipId })
.href();
console.log("checking tip status from", tipStatusUrl);
const merchantResp = await this.http.get(tipStatusUrl);