From 5778bf95d94f4d187451a72a5b86ba4daaafe4ab Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Fri, 22 Jun 2018 18:53:39 +1000 Subject: Report minfeefilter value in getpeerinfo rpc Lowering the minimum relay fee is only useful when many nodes in the p2p network also lower the fee, so to make it easier to understand progress on that front, this includes the value of the minfeefilter in getpeerinfo, so you at least have visibility to what fees your neighbours are currently accepting. --- src/net.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/net.cpp') diff --git a/src/net.cpp b/src/net.cpp index ec4fa6c26..df2cb54b7 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -715,6 +715,7 @@ void CNode::copyStats(CNodeStats &stats) X(nRecvBytes); } X(fWhitelisted); + X(minFeeFilter); // It is common for nodes with good ping times to suddenly become lagged, // due to a new block arriving or other large transfer. -- cgit v1.2.3