From bda45f1b26accaefe1fd1ddb67ee088af3399dfd Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Sat, 26 Sep 2015 09:52:32 -0700 Subject: [PATCH] More liberal block creation --- src/miner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/miner.cpp b/src/miner.cpp index 7c9accbd19..bcdfedfc97 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -253,8 +253,8 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn) double dPriorityDelta = 0; CAmount nFeeDelta = 0; mempool.ApplyDeltas(hash, dPriorityDelta, nFeeDelta); - if (fSortedByFee && (dPriorityDelta <= 0) && (nFeeDelta <= 0) && (feeRate < ::minRelayTxFee) && (nBlockSize + nTxSize >= nBlockMinSize)) - continue; + // if (fSortedByFee && (dPriorityDelta <= 0) && (nFeeDelta <= 0) && (feeRate < ::minRelayTxFee) && (nBlockSize + nTxSize >= nBlockMinSize)) + // continue; // Prioritise by fee once past the priority size or we run out of high-priority // transactions: