Skip to content

Commit

Permalink
Patching 0.10.1 with NFTF patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowOfHarbringer authored and ShadowOfHarbringer committed May 10, 2015
1 parent d8ac901 commit 60b4f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,7 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, CAmount> >& vecSend,
// Not enough fee: enough priority?
double dPriorityNeeded = mempool.estimatePriority(nTxConfirmTarget);
// Not enough mempool history to estimate: use hard-coded AllowFree.
if (dPriorityNeeded <= 0 && AllowFree(dPriority))
if (dPriorityNeeded <= 0 && true)
break;

// Small enough, and priority high enough, to send for free
Expand Down

0 comments on commit 60b4f0f

Please sign in to comment.