From a630da64003ba1831006316a5f27b8a25b788ca2 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Wed, 11 May 2011 16:48:51 -0400 Subject: Replace CENT with new constant MIN_TX_FEE, where appropriate. MIN_TX_FEE==CENT remains true (until next commit). --- src/ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui.cpp') 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, " -- cgit v1.2.3