Merge pull request #2451 from patricklodder/1.14.4-feefilter-rpc

rpc: add feefilter to peers from getpeerinfo
This commit is contained in:
Ross Nicoll 2021-08-14 09:22:45 +01:00 committed by GitHub
commit 6336a3a994
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View file

@ -658,6 +658,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.

View file

@ -510,6 +510,7 @@ public:
double dMinPing;
std::string addrLocal;
CAddress addr;
CAmount minFeeFilter;
};

View file

@ -16,6 +16,7 @@
#include "timedata.h"
#include "ui_interface.h"
#include "util.h"
#include "utilmoneystr.h"
#include "utilstrencodings.h"
#include "version.h"
@ -95,6 +96,7 @@ UniValue getpeerinfo(const JSONRPCRequest& request)
" \"inbound\": true|false, (boolean) Inbound (true) or Outbound (false)\n"
" \"addnode\": true|false, (boolean) Whether connection was due to addnode and is using an addnode slot\n"
" \"startingheight\": n, (numeric) The starting height (block) of the peer\n"
" \"feefilter\": \"decimal\", (string) The value of the last feefilter set by this peer, in DOGE\n"
" \"banscore\": n, (numeric) The ban score\n"
" \"synced_headers\": n, (numeric) The last header we have in common with this peer\n"
" \"synced_blocks\": n, (numeric) The last block we have in common with this peer\n"
@ -157,6 +159,7 @@ UniValue getpeerinfo(const JSONRPCRequest& request)
obj.push_back(Pair("inbound", stats.fInbound));
obj.push_back(Pair("addnode", stats.fAddnode));
obj.push_back(Pair("startingheight", stats.nStartingHeight));
obj.push_back(Pair("feefilter", FormatMoney(stats.minFeeFilter)));
if (fStateStats) {
obj.push_back(Pair("banscore", statestats.nMisbehavior));
obj.push_back(Pair("synced_headers", statestats.nSyncHeight));