From 60b4f0fbaa6431f7eb751e2f6b4ba1c8f9f185f7 Mon Sep 17 00:00:00 2001 From: ShadowOfHarbringer Date: Sun, 10 May 2015 11:22:11 +0200 Subject: [PATCH] Patching 0.10.1 with NFTF patch --- src/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet.cpp b/src/wallet.cpp index abdeed8f57663..41dd9561f2b56 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1510,7 +1510,7 @@ bool CWallet::CreateTransaction(const vector >& 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