From 03594dab6ad861ab94f378ccb4d32dba7b33b5b3 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 17 Oct 2018 21:20:17 -0400 Subject: [PATCH] exception message correction --- torba/basetransaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/basetransaction.py b/torba/basetransaction.py index 3ac582b88..ec29294eb 100644 --- a/torba/basetransaction.py +++ b/torba/basetransaction.py @@ -470,7 +470,7 @@ class BaseTransaction: await tx.sign(funding_accounts) except Exception as e: - log.exception('Failed to synchronize transaction:') + log.exception('Failed to create transaction:') await ledger.release_outputs(tx.outputs) raise e