We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3897ae5 commit acefaa8Copy full SHA for acefaa8
src/rpc/net.cpp
@@ -180,6 +180,13 @@ UniValue getpeerinfo(const JSONRPCRequest& request)
180
}
181
obj.pushKV("bytesrecv_per_msg", recvPerMsgCmd);
182
183
+ // DMN data
184
+ if (stats.m_masternode_connection) {
185
+ obj.pushKV("masternode_iqr_conn", stats.m_masternode_iqr_connection);
186
+ obj.pushKV("verif_mn_proreg_tx_hash", stats.verifiedProRegTxHash.GetHex());
187
+ obj.pushKV("verif_mn_operator_pubkey_hash", stats.verifiedPubKeyHash.GetHex());
188
+ }
189
+
190
ret.push_back(obj);
191
192
0 commit comments