mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-26 15:36:19 +01:00
Remove ::incrementalRelayFee and ::minRelayTxFee globals
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
**Policy** (Mempool or Transaction Relay Policy) is the node's set of validation rules, in addition
|
||||
to consensus, enforced for unconfirmed transactions before submitting them to the mempool. These
|
||||
rules are local to the node and configurable (e.g. `-minrelaytxfee`, `-limitancestorsize`,
|
||||
`-incrementalRelayFee`). Policy may include restrictions on the transaction itself, the transaction
|
||||
`-incrementalrelayfee`). Policy may include restrictions on the transaction itself, the transaction
|
||||
in relation to the current chain tip, and the transaction in relation to the node's mempool
|
||||
contents. Policy is *not* applied to transactions in blocks.
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ This set of rules is similar but distinct from BIP125.
|
||||
Bitcoin Core implementation.
|
||||
|
||||
* The incremental relay feerate used to calculate the required additional fees is distinct from
|
||||
`minRelayTxFee` and configurable using `-incrementalrelayfee`
|
||||
`-minrelaytxfee` and configurable using `-incrementalrelayfee`
|
||||
([PR #9380](https://github.com/bitcoin/bitcoin/pull/9380)).
|
||||
|
||||
* RBF enabled by default in the wallet GUI as of **v0.18.1** ([PR
|
||||
|
||||
@@ -81,7 +81,7 @@ If any transactions in the package are already in the mempool, they are not subm
|
||||
("deduplicated") and are thus excluded from this calculation.
|
||||
|
||||
To meet the two feerate requirements of a mempool, i.e., the pre-configured minimum relay feerate
|
||||
(`minRelayTxFee`) and the dynamic mempool minimum feerate, the total package feerate is used instead
|
||||
(`-minrelaytxfee`) and the dynamic mempool minimum feerate, the total package feerate is used instead
|
||||
of the individual feerate. The individual transactions are allowed to be below the feerate
|
||||
requirements if the package meets the feerate requirements. For example, the parent(s) in the
|
||||
package can pay no fees but be paid for by the child.
|
||||
|
||||
Reference in New Issue
Block a user