diff options
| author | Patrick Lodder <[email protected]> | 2021-08-14 00:34:54 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-08-14 03:16:54 +0200 |
| commit | 3c327d0d6a4b1d1a684860ee7b29da31486e96dd (patch) | |
| tree | 71900340a260c24c009412cfd476dfcc2d35ccab /src/net.cpp | |
| parent | Merge pull request #2437 from michilumin/1.14.4-mintxfee (diff) | |
| download | discoin-3c327d0d6a4b1d1a684860ee7b29da31486e96dd.tar.xz discoin-3c327d0d6a4b1d1a684860ee7b29da31486e96dd.zip | |
rpc: add feefilter to peers from getpeerinfo
Exposes information about the feefilter the peer sets to us, so
that we can make better informed decisions when a transaction
does not get relayed.
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 2117c59fd..64e8eaad6 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -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. |