diff options
author | Jeff Garzik <jeff@garzik.org> | 2011-05-11 16:48:51 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2011-05-11 16:48:51 -0400 |
commit | a630da64003ba1831006316a5f27b8a25b788ca2 (patch) | |
tree | 44352034a85da48a49ec73a6ff2b94d31ba07222 /src/ui.cpp | |
parent | 04a667b0767a6c3fff8d24be784ccaec9edf712b (diff) |
Replace CENT with new constant MIN_TX_FEE, where appropriate.
MIN_TX_FEE==CENT remains true (until next commit).
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 2 |
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, " |