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
parentcf74a137f3528482396a9d260660c287994730f1 (diff)
parentfc855c1a21d6c109cd99a266613657b12d198b2a (diff)
downloadmonzero-core-e01a9ea50797f40329454b989a9a397b74eb8710.tar.gz
monzero-core-e01a9ea50797f40329454b989a9a397b74eb8710.tar.xz
monzero-core-e01a9ea50797f40329454b989a9a397b74eb8710.zip
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)
{