diff options
| author | Alex Morcos <[email protected]> | 2017-01-20 09:24:35 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-03-03 16:50:20 -0500 |
| commit | 359e8a03d1667dca3e8375695131b8b5e6c54f0a (patch) | |
| tree | b92b29328bfce5456650488ad40ed87350697b1a /src/validation.cpp | |
| parent | [rpc] Remove priorityDelta from prioritisetransaction (diff) | |
| download | discoin-359e8a03d1667dca3e8375695131b8b5e6c54f0a.tar.xz discoin-359e8a03d1667dca3e8375695131b8b5e6c54f0a.zip | |
[cleanup] Remove coin age priority completely.
Remove GetPriority and ComputePriority. Remove internal machinery for tracking priority in CTxMemPoolEntry.
Diffstat (limited to 'src/validation.cpp')
| -rw-r--r-- | src/validation.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 1f57468bc..4a67dead3 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -722,9 +722,6 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState& state, const C CAmount nModifiedFees = nFees; pool.ApplyDelta(hash, nModifiedFees); - CAmount inChainInputValue; - double dPriority = view.GetPriority(tx, chainActive.Height(), inChainInputValue); - // Keep track of transactions that spend a coinbase, which we re-scan // during reorgs to ensure COINBASE_MATURITY is still met. bool fSpendsCoinbase = false; @@ -736,8 +733,8 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState& state, const C } } - CTxMemPoolEntry entry(ptx, nFees, nAcceptTime, dPriority, chainActive.Height(), - inChainInputValue, fSpendsCoinbase, nSigOpsCost, lp); + CTxMemPoolEntry entry(ptx, nFees, nAcceptTime, chainActive.Height(), + fSpendsCoinbase, nSigOpsCost, lp); unsigned int nSize = entry.GetTxSize(); // Check that the transaction doesn't have an excessive number of |