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 /src | |
| parent | cf74a137f3528482396a9d260660c287994730f1 (diff) | |
| parent | fc855c1a21d6c109cd99a266613657b12d198b2a (diff) | |
| download | monzero-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)
Diffstat (limited to 'src')
| -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) { |
