aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorWill Skinner <meaningoflifeis42@gmail.com>2016-09-22 21:06:39 -0700
committerWill Skinner <meaningoflifeis42@gmail.com>2016-09-22 21:06:39 -0700
commitfc855c1a21d6c109cd99a266613657b12d198b2a (patch)
tree4f1d1eba322feb340d674ee0dbca0e6ae414503f /src/simplewallet
parentMerge pull request #1102 (diff)
downloadmonero-fc855c1a21d6c109cd99a266613657b12d198b2a.tar.xz
Made error message consistent with other, more helpful, message
Diffstat (limited to 'src/simplewallet')
-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 7260ecf8a..1dd3efeeb 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)
{