diff options
author | Anthony Towns <aj@erisian.com.au> | 2018-06-22 18:53:39 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2018-08-27 21:13:15 +1000 |
commit | 5778bf95d94f4d187451a72a5b86ba4daaafe4ab (patch) | |
tree | e7d16369ff660d36bb42b9b97597bec967ac6d33 /src/net.h | |
parent | b5591ca0b053623f0d96423b05ad809115a0bdef (diff) |
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.
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -558,6 +558,7 @@ public: double dPingTime; double dPingWait; double dMinPing; + CAmount minFeeFilter; // Our address, as reported by the peer std::string addrLocal; // Address of this peer |