From 837e4f254eac78bfa8c6f2d6e33c7263247dcdf3 Mon Sep 17 00:00:00 2001 From: theoreticalbts Date: Fri, 9 Oct 2015 17:22:56 -0400 Subject: [PATCH] wallet.cpp: More detailed logging of exception when broadcasting --- libraries/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 060064c4..f925ddb4 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -1716,7 +1716,7 @@ public: } catch (const fc::exception& e) { - elog("Caught exception while broadcasting transaction with id ${id}", ("id", tx.id().str())); + elog("Caught exception while broadcasting tx ${id}: ${e}", ("id", tx.id().str())("e", e.to_detail_string()) ); throw; } }