diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-30 01:32:20 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-30 01:32:57 +0000 |
| commit | 9092fc4bfdc99c08899c4c0ade231af840d23bcd (patch) | |
| tree | 39b04bc8be426fc3c5d8e7f6b58e144c4efeb1c4 /src/simplewallet | |
| parent | ed54ac8fdfe332c4ec6b9fd9331024d862ecad51 (diff) | |
| download | monzero-core-9092fc4bfdc99c08899c4c0ade231af840d23bcd.tar.gz monzero-core-9092fc4bfdc99c08899c4c0ade231af840d23bcd.tar.xz monzero-core-9092fc4bfdc99c08899c4c0ade231af840d23bcd.zip | |
wallet: do not display daemon controlled text if untrusted
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 281702774..eb7dddbec 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -451,7 +451,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; |
