diff --git a/src/miner.cpp b/src/miner.cpp index 7c9accbd19e80..bcdfedfc976eb 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: