aboutsummaryrefslogtreecommitdiff
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-05-11 18:16:36 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-05-11 18:16:36 -0700
commit4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58 (patch)
tree45ca3fe2689303d34fa7fbad91697e72a8cc43f0 /src/ui.cpp
parent04a667b0767a6c3fff8d24be784ccaec9edf712b (diff)
parent2a2487514a818a5de43c99e149efae991d300ed9 (diff)
downloadbitcoin-4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58.tar.xz
Merge pull request #218 from jgarzik/fee-update
Update TX fee to 0.0005 BTC
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index f2bdd49d55..962a268f39 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -196,7 +196,7 @@ int ThreadSafeMessageBox(const string& message, const string& caption, int style
bool ThreadSafeAskFee(int64 nFeeRequired, const string& strCaption, wxWindow* parent)
{
- if (nFeeRequired < CENT || nFeeRequired <= nTransactionFee || fDaemon)
+ if (nFeeRequired < MIN_TX_FEE || nFeeRequired <= nTransactionFee || fDaemon)
return true;
string strMessage = strprintf(
_("This transaction is over the size limit. You can still send it for a fee of %s, "