summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-30 18:01:09 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-30 18:01:09 +0530
commit3f52d293be88f19e8e68aaa8ee6a80cd6c7cc47a (patch)
tree8dd7a78c1b5ffb3c86ee8937b99e502f893f10d1
parente52e1fab864ef5826c88da447109f341b6c09715 (diff)
downloadwallet-core-3f52d293be88f19e8e68aaa8ee6a80cd6c7cc47a.tar.gz
wallet-core-3f52d293be88f19e8e68aaa8ee6a80cd6c7cc47a.tar.bz2
wallet-core-3f52d293be88f19e8e68aaa8ee6a80cd6c7cc47a.zip
error message
-rw-r--r--src/operations/errors.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operations/errors.ts b/src/operations/errors.ts
index 50e68993b..0d180a465 100644
--- a/src/operations/errors.ts
+++ b/src/operations/errors.ts
@@ -144,7 +144,7 @@ export async function guardOperationException<T>(
console.log("guard: caught something else");
const opErr = {
type: "exception",
- message: "non-error exception thrown",
+ message: "unexpected exception thrown",
details: {
value: e.toString(),
},