diff options
author | Jon Atack <jon@atack.com> | 2020-06-29 10:05:15 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-08-24 18:41:24 +0200 |
commit | 581b343d5bf517510ab0236583ca96628751177d (patch) | |
tree | 90bdb32391a32b2664183dcc1bf844a9ff649bc8 /src | |
parent | d9cc13e88d096c1a171159c01cbb96444f7f8d7f (diff) |
Add in/out connections to cli -getinfo
Diffstat (limited to 'src')
-rw-r--r-- | src/bitcoin-cli.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index cf52b710cb..437251a02e 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -271,7 +271,13 @@ public: result.pushKV("headers", batch[ID_BLOCKCHAININFO]["result"]["headers"]); result.pushKV("verificationprogress", batch[ID_BLOCKCHAININFO]["result"]["verificationprogress"]); result.pushKV("timeoffset", batch[ID_NETWORKINFO]["result"]["timeoffset"]); - result.pushKV("connections", batch[ID_NETWORKINFO]["result"]["connections"]); + + UniValue connections(UniValue::VOBJ); + connections.pushKV("in", batch[ID_NETWORKINFO]["result"]["connections_in"]); + connections.pushKV("out", batch[ID_NETWORKINFO]["result"]["connections_out"]); + connections.pushKV("total", batch[ID_NETWORKINFO]["result"]["connections"]); + result.pushKV("connections", connections); + result.pushKV("proxy", batch[ID_NETWORKINFO]["result"]["networks"][0]["proxy"]); result.pushKV("difficulty", batch[ID_BLOCKCHAININFO]["result"]["difficulty"]); result.pushKV("chain", UniValue(batch[ID_BLOCKCHAININFO]["result"]["chain"])); |