aboutsummaryrefslogtreecommitdiff
path: root/src/wallet-impl/payback.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet-impl/payback.ts')
-rw-r--r--src/wallet-impl/payback.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet-impl/payback.ts b/src/wallet-impl/payback.ts
index 56696d771..8cdfbf7ed 100644
--- a/src/wallet-impl/payback.ts
+++ b/src/wallet-impl/payback.ts
@@ -76,7 +76,7 @@ export async function payback(
if (resp.status !== 200) {
throw Error();
}
- const paybackConfirmation = PaybackConfirmation.checked(resp.responseJson);
+ const paybackConfirmation = PaybackConfirmation.checked(await resp.json());
if (paybackConfirmation.reserve_pub !== coin.reservePub) {
throw Error(`Coin's reserve doesn't match reserve on payback`);
}