aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2016-12-13 13:43:35 -0500
committerAlex Morcos <morcos@chaincode.com>2017-01-16 08:39:03 -0500
commit7b1add3c28aae8caf2e1517f15cd953eacbb4931 (patch)
tree275ed3876e984eaa5ffa35ac2780dfc6fb420b78 /src/txmempool.h
parentdaec955fd68bd0da036a5b446b54ffb01108adcd (diff)
downloadbitcoin-7b1add3c28aae8caf2e1517f15cd953eacbb4931.tar.xz
Introduce -incrementalrelayfee
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index 7c68053f26..359babee55 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -425,8 +425,6 @@ private:
uint64_t totalTxSize; //!< sum of all mempool tx' byte sizes
uint64_t cachedInnerUsage; //!< sum of dynamic memory usage of all the map elements (NOT the maps themselves)
- CFeeRate minReasonableRelayFee;
-
mutable int64_t lastRollingFeeUpdate;
mutable bool blockSinceLastRollingFeeBump;
mutable double rollingMinimumFeeRate; //!< minimum fee to get into the pool, decreases exponentially
@@ -505,9 +503,6 @@ public:
std::map<uint256, std::pair<double, CAmount> > mapDeltas;
/** Create a new CTxMemPool.
- * minReasonableRelayFee should be a feerate which is, roughly, somewhere
- * around what it "costs" to relay a transaction around the network and
- * below which we would reasonably say a transaction has 0-effective-fee.
*/
CTxMemPool(const CFeeRate& _minReasonableRelayFee);
~CTxMemPool();
@@ -591,7 +586,7 @@ public:
/** The minimum fee to get into the mempool, which may itself not be enough
* for larger-sized transactions.
- * The minReasonableRelayFee constructor arg is used to bound the time it
+ * The incrementalRelayFee policy variable is used to bound the time it
* takes the fee rate to go back down all the way to 0. When the feerate
* would otherwise be half of this, it is set to 0 instead.
*/