summaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 810b724e7..2560b0dc3 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -640,7 +640,9 @@ export class Wallet {
* Accept a refund, return the contract hash for the contract
* that was involved in the refund.
*/
- async applyRefund(talerRefundUri: string): Promise<{ contractTermsHash: string }> {
+ async applyRefund(
+ talerRefundUri: string,
+ ): Promise<{ contractTermsHash: string }> {
return applyRefund(this.ws, talerRefundUri);
}