simplewallet: print tx rejection reason where it was missing

pull/95/head
moneromooo-monero 7 years ago
parent 3dee3301ba
commit 9236823bf4
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -3474,6 +3474,9 @@ bool simple_wallet::submit_transfer(const std::vector<std::string> &args_)
catch (const tools::error::tx_rejected& e)
{
fail_msg_writer() << (boost::format(tr("transaction %s was rejected by daemon with status: ")) % get_transaction_hash(e.tx())) << e.status();
std::string reason = e.reason();
if (!reason.empty())
fail_msg_writer() << tr("Reason: ") << reason;
}
catch (const tools::error::tx_sum_overflow& e)
{

Loading…
Cancel
Save