mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-04 07:03:05 +02:00
Always return getpeerinfo "minfeefilter" field (for v24 backport)
with its pre-existing v23 default value of 0.
This commit is contained in:
@@ -146,7 +146,7 @@ static RPCHelpMan getpeerinfo()
|
|||||||
{
|
{
|
||||||
{RPCResult::Type::STR, "permission_type", Join(NET_PERMISSIONS_DOC, ",\n") + ".\n"},
|
{RPCResult::Type::STR, "permission_type", Join(NET_PERMISSIONS_DOC, ",\n") + ".\n"},
|
||||||
}},
|
}},
|
||||||
{RPCResult::Type::NUM, "minfeefilter", /*optional=*/true, "The minimum fee rate for transactions this peer accepts"},
|
{RPCResult::Type::NUM, "minfeefilter", "The minimum fee rate for transactions this peer accepts"},
|
||||||
{RPCResult::Type::OBJ_DYN, "bytessent_per_msg", "",
|
{RPCResult::Type::OBJ_DYN, "bytessent_per_msg", "",
|
||||||
{
|
{
|
||||||
{RPCResult::Type::NUM, "msg", "The total bytes sent aggregated by message type\n"
|
{RPCResult::Type::NUM, "msg", "The total bytes sent aggregated by message type\n"
|
||||||
@@ -247,9 +247,7 @@ static RPCHelpMan getpeerinfo()
|
|||||||
permissions.push_back(permission);
|
permissions.push_back(permission);
|
||||||
}
|
}
|
||||||
obj.pushKV("permissions", permissions);
|
obj.pushKV("permissions", permissions);
|
||||||
if (fStateStats) {
|
obj.pushKV("minfeefilter", fStateStats ? ValueFromAmount(statestats.m_fee_filter_received) : 0);
|
||||||
obj.pushKV("minfeefilter", ValueFromAmount(statestats.m_fee_filter_received));
|
|
||||||
}
|
|
||||||
|
|
||||||
UniValue sendPerMsgType(UniValue::VOBJ);
|
UniValue sendPerMsgType(UniValue::VOBJ);
|
||||||
for (const auto& i : stats.mapSendBytesPerMsgType) {
|
for (const auto& i : stats.mapSendBytesPerMsgType) {
|
||||||
|
Reference in New Issue
Block a user