diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-01-16 21:38:15 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-01-16 21:38:15 +0200 |
commit | 3eb96fa512b2c17560be388b9c71b7517703e53f (patch) | |
tree | 0e86d0f3b68a7427f3d41f0ac9f55817a0703126 /src/simplewallet | |
parent | Merge pull request #5022 (diff) | |
parent | wallet: do not display daemon controlled text if untrusted (diff) | |
download | monero-3eb96fa512b2c17560be388b9c71b7517703e53f.tar.xz |
Merge pull request #5027
9092fc4b wallet: do not display daemon controlled text if untrusted (moneromooo-monero)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 9dfa7130d..ea04485eb 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -541,7 +541,7 @@ namespace } catch (const tools::error::tx_rejected& e) { - fail_msg_writer() << (boost::format(sw::tr("transaction %s was rejected by daemon with status: ")) % get_transaction_hash(e.tx())) << e.status(); + fail_msg_writer() << (boost::format(sw::tr("transaction %s was rejected by daemon")) % get_transaction_hash(e.tx())); std::string reason = e.reason(); if (!reason.empty()) fail_msg_writer() << sw::tr("Reason: ") << reason; |