wallet.cpp: More detailed logging of exception when broadcasting

This commit is contained in:
theoreticalbts 2015-10-09 17:22:56 -04:00
parent 55dd3cc26a
commit 837e4f254e

View file

@ -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;
}
}