aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2011-04-20 18:08:01 -0400
committerGavin Andresen <gavinandresen@gmail.com>2011-04-20 18:08:01 -0400
commit64ad448adc67f3c32fe0dfe074c82a8377f67ee7 (patch)
treebbd46409c3e120bc6c48718c73ca723f9569f945 /main.cpp
parentca5884873e36e5ca7453052a34ddea3691b95694 (diff)
downloadbitcoin-64ad448adc67f3c32fe0dfe074c82a8377f67ee7.tar.xz
Better wording for transaction fee notification messagesv0.3.21
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index ce54179294..4c8f20c1e4 100644
--- a/main.cpp
+++ b/main.cpp
@@ -4067,7 +4067,7 @@ string SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAs
{
string strError;
if (nValue + nFeeRequired > GetBalance())
- strError = strprintf(_("Error: This is an oversized transaction that requires a transaction fee of %s "), FormatMoney(nFeeRequired).c_str());
+ strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds "), FormatMoney(nFeeRequired).c_str());
else
strError = _("Error: Transaction creation failed ");
printf("SendMoney() : %s", strError.c_str());