Skip to content

Commit b5404b5

Browse files
committed
RPC: Fix help output for getblockchaininfo
`initial_block_downloading` isn't a member of the `shield_pool_value` object.
1 parent 84367ea commit b5404b5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/rpc/blockchain.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -980,12 +980,11 @@ UniValue getblockchaininfo(const JSONRPCRequest& request)
980980
" \"difficulty\": xxxxxx, (numeric) the current difficulty\n"
981981
" \"verificationprogress\": xxxx, (numeric) estimate of verification progress [0..1]\n"
982982
" \"chainwork\": \"xxxx\" (string) total amount of work in active chain, in hexadecimal\n"
983-
" \"shield_pool_value\": (object) Chain tip shield pool value\n"
984-
" \"initial_block_downloading\" (boolean) whether the node is in initial block downloading state or not"
985-
" {\n"
986-
" \"chainValue\": (numeric) Total value held by the Sapling circuit up to and including the chain tip\n"
987-
" \"valueDelta\": (numeric) Change in value held by the Sapling circuit over the chain tip block\n"
988-
" }\n"
983+
" \"shield_pool_value\": { (object) Chain tip shield pool value\n"
984+
" \"chainValue\": (numeric) Total value held by the Sapling circuit up to and including the chain tip\n"
985+
" \"valueDelta\": (numeric) Change in value held by the Sapling circuit over the chain tip block\n"
986+
" },\n"
987+
" \"initial_block_downloading\": true|false, (boolean) whether the node is in initial block downloading state or not\n"
989988
" \"softforks\": [ (array) status of softforks in progress\n"
990989
" {\n"
991990
" \"id\": \"xxxx\", (string) name of softfork\n"

0 commit comments

Comments
 (0)