aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-01-13 16:05:17 -0300
committerSebastian <sebasjm@gmail.com>2023-01-13 16:05:17 -0300
commitbc67ff0c7f298b0657164037ba01e1bc3488202c (patch)
tree5568746efd6e195a0f4e69b690aa266979523985 /packages/taler-wallet-core/src/operations
parente573c56873a954abdc3eae3de7afc57e4e092f7a (diff)
downloadwallet-core-bc67ff0c7f298b0657164037ba01e1bc3488202c.tar.xz
added not-yet-implemented and pretty
Diffstat (limited to 'packages/taler-wallet-core/src/operations')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index 80dc50eb8..a702fab2f 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -1227,6 +1227,8 @@ export async function abortTransaction(
await abortPay(ws, proposalId, forceImmediateAbort);
} else {
const unknownTxType: any = type;
- throw Error(`can't abort a '${unknownTxType}' transaction`);
+ throw Error(
+ `can't abort a '${unknownTxType}' transaction: not yet implemented`,
+ );
}
}