aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-26 17:34:26 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-26 17:34:26 +0200
commite01a9ea50797f40329454b989a9a397b74eb8710 (patch)
treebc0aea7386f60bcb795648b0e5ea89ac766689dc
parentMerge pull request #1116 (diff)
parentMade error message consistent with other, more helpful, message (diff)
downloadmonero-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.cpp2
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)
{