wallet.cpp: More detailed logging of exception when broadcasting
This commit is contained in:
parent
55dd3cc26a
commit
837e4f254e
1 changed files with 1 additions and 1 deletions
|
|
@ -1716,7 +1716,7 @@ public:
|
||||||
}
|
}
|
||||||
catch (const fc::exception& e)
|
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;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue