diff --git a/docs/protocol-methods.rst b/docs/protocol-methods.rst index 3d9d73b..74cc6c2 100644 --- a/docs/protocol-methods.rst +++ b/docs/protocol-methods.rst @@ -237,8 +237,9 @@ Subscribe to receive block headers when a new block is found. blockchain.relayfee =================== -Return the minimum fee a low-priority transaction must pay in order to -be accepted to the daemon's memory pool. +Feerates lower than this are considered zero fee and are not being +relayed to the bitcoin network by the server. +This feerate does not guarantee acceptance into the mempool of the server. **Signature** @@ -259,6 +260,29 @@ be accepted to the daemon's memory pool. 0.0 +blockchain.mempoolminfee +======================== + +Minimum fee rate in BTC/kvB for a transaction to be accepted into the servers mempool. + +**Signature** + + .. function:: blockchain.mempoolminfee() + +**Result** + + The BTC/kvB fee in whole coin units (BTC, not satoshis) as a floating point number. + +**Example Results** + +:: + + 0.00002123 + +:: + + 0.00001000 + blockchain.scripthash.get_balance =================================