Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions docs/protocol-methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand All @@ -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
=================================

Expand Down