|
|
|
@ -968,6 +968,11 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
@@ -968,6 +968,11 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
|
|
|
|
|
|
|
|
|
|
CAmount nValueOut = tx.GetValueOut(); |
|
|
|
|
CAmount nFees = nValueIn-nValueOut; |
|
|
|
|
// nModifiedFees includes any fee deltas from PrioritiseTransaction
|
|
|
|
|
CAmount nModifiedFees = nFees; |
|
|
|
|
double nPriorityDummy = 0; |
|
|
|
|
pool.ApplyDeltas(hash, nPriorityDummy, nModifiedFees); |
|
|
|
|
|
|
|
|
|
CAmount inChainInputValue; |
|
|
|
|
double dPriority = view.GetPriority(tx, chainActive.Height(), inChainInputValue); |
|
|
|
|
|
|
|
|
@ -987,14 +992,17 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
@@ -987,14 +992,17 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
|
|
|
|
|
|
|
|
|
|
// Don't accept it if it can't get into a block
|
|
|
|
|
CAmount txMinFee = GetMinRelayFee(tx, pool, nSize, true); |
|
|
|
|
|
|
|
|
|
// txMinFee takes into account priority/fee deltas, so compare using
|
|
|
|
|
// nFees rather than nModifiedFees
|
|
|
|
|
if (fLimitFree && nFees < txMinFee) |
|
|
|
|
return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient fee", false, |
|
|
|
|
strprintf("%d < %d", nFees, txMinFee)); |
|
|
|
|
|
|
|
|
|
CAmount mempoolRejectFee = pool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFee(nSize); |
|
|
|
|
if (mempoolRejectFee > 0 && nFees < mempoolRejectFee) { |
|
|
|
|
if (mempoolRejectFee > 0 && nModifiedFees < mempoolRejectFee) { |
|
|
|
|
return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "mempool min fee not met", false, strprintf("%d < %d", nFees, mempoolRejectFee)); |
|
|
|
|
} else if (GetBoolArg("-relaypriority", DEFAULT_RELAYPRIORITY) && nFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(entry.GetPriority(chainActive.Height() + 1))) { |
|
|
|
|
} else if (GetBoolArg("-relaypriority", DEFAULT_RELAYPRIORITY) && nModifiedFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(entry.GetPriority(chainActive.Height() + 1))) { |
|
|
|
|
// Require that free transactions have sufficient priority to be mined in the next block.
|
|
|
|
|
return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient priority"); |
|
|
|
|
} |
|
|
|
@ -1002,7 +1010,7 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
@@ -1002,7 +1010,7 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
|
|
|
|
|
// Continuously rate-limit free (really, very-low-fee) transactions
|
|
|
|
|
// This mitigates 'penny-flooding' -- sending thousands of free transactions just to
|
|
|
|
|
// be annoying or make others' transactions take longer to confirm.
|
|
|
|
|
if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize)) |
|
|
|
|
if (fLimitFree && nModifiedFees < ::minRelayTxFee.GetFee(nSize)) |
|
|
|
|
{ |
|
|
|
|
static CCriticalSection csFreeLimiter; |
|
|
|
|
static double dFreeCount; |
|
|
|
@ -1061,10 +1069,6 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
@@ -1061,10 +1069,6 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState &state, const C
|
|
|
|
|
uint64_t nConflictingCount = 0; |
|
|
|
|
CTxMemPool::setEntries allConflicting; |
|
|
|
|
|
|
|
|
|
CAmount nModifiedFees = nFees; |
|
|
|
|
double nPriorityDummy = 0; |
|
|
|
|
pool.ApplyDeltas(hash, nPriorityDummy, nModifiedFees); |
|
|
|
|
|
|
|
|
|
// If we don't hold the lock allConflicting might be incomplete; the
|
|
|
|
|
// subsequent RemoveStaged() and addUnchecked() calls don't guarantee
|
|
|
|
|
// mempool consistency for us.
|
|
|
|
|