From 64ad448adc67f3c32fe0dfe074c82a8377f67ee7 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Wed, 20 Apr 2011 18:08:01 -0400 Subject: Better wording for transaction fee notification messages --- main.cpp | 2 +- ui.cpp | 2 +- 2 files changed, 2 insertions(+), 2 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()); diff --git a/ui.cpp b/ui.cpp index 5d4c6529ff..2277da6a3a 100644 --- a/ui.cpp +++ b/ui.cpp @@ -2247,7 +2247,7 @@ void CSendingDialog::OnReply2(CDataStream& vRecv) if (!CreateTransaction(scriptPubKey, nPrice, wtx, reservekey, nFeeRequired)) { if (nPrice + nFeeRequired > GetBalance()) - Error(strprintf(_("This is an oversized transaction that requires a transaction fee of %s"), FormatMoney(nFeeRequired).c_str())); + Error(strprintf(_("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 Error(_("Transaction creation failed")); return; -- cgit v1.2.3