Replace CENT with new constant MIN_TX_FEE, where appropriate.

MIN_TX_FEE==CENT remains true (until next commit).
This commit is contained in:
Jeff Garzik
2011-05-11 16:48:51 -04:00
committed by Jeff Garzik
parent 04a667b076
commit a630da6400
3 changed files with 7 additions and 6 deletions

View File

@@ -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, "