diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-26 17:34:26 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-26 17:34:26 +0200 |
commit | e01a9ea50797f40329454b989a9a397b74eb8710 (patch) | |
tree | bc0aea7386f60bcb795648b0e5ea89ac766689dc | |
parent | Merge pull request #1116 (diff) | |
parent | Made error message consistent with other, more helpful, message (diff) | |
download | monero-e01a9ea50797f40329454b989a9a397b74eb8710.tar.xz |
Merge pull request #1117
fc855c1 Made error message consistent with other, more helpful, message (Will Skinner)
-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 cffdfaf91..279a5fa41 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2489,7 +2489,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri print_money(e.tx_amount() + e.fee()) % print_money(e.tx_amount()) % print_money(e.fee())); - fail_msg_writer() << tr("Failed to find a way to create transactions"); + fail_msg_writer() << tr("Failed to find a way to create transactions. This is usually due to dust which is so small it cannot pay for itself in fees"); } catch (const tools::error::not_enough_outs_to_mix& e) { |