diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-03-30 16:09:32 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-03-30 16:09:32 +0530 |
commit | aaf950e2ad5c07d4423f9822e3a0ae9f7b8d2bdf (patch) | |
tree | 9274139660f30c4857d80044eb4ac283aac1775a /src/wallet.ts | |
parent | 15e18440dbad55df19977a2eb7053681259afc18 (diff) |
re-format with prettier v2, fix HTML
Diffstat (limited to 'src/wallet.ts')
-rw-r--r-- | src/wallet.ts | 4 |
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); } |