diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2016-10-04 22:20:07 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-10-04 22:22:07 +0000 |
commit | a78e5428acb862bfb47e6faff39f4889f5c73269 (patch) | |
tree | 0ec870f7565921993e5287b8c2f9d2a4b4dd5388 | |
parent | e4382fbef56a0e04b0ed834e8b3a3a16f81db149 (diff) |
Bugfix: Trivial: RPC: getblockchaininfo help: pruneheight is the lowest, not highest, block
-rw-r--r-- | src/rpc/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 20eefa1c57..675d9ba904 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -892,7 +892,7 @@ UniValue getblockchaininfo(const UniValue& params, bool fHelp) " \"verificationprogress\": xxxx, (numeric) estimate of verification progress [0..1]\n" " \"chainwork\": \"xxxx\" (string) total amount of work in active chain, in hexadecimal\n" " \"pruned\": xx, (boolean) if the blocks are subject to pruning\n" - " \"pruneheight\": xxxxxx, (numeric) heighest block available\n" + " \"pruneheight\": xxxxxx, (numeric) lowest-height complete block stored\n" " \"softforks\": [ (array) status of softforks in progress\n" " {\n" " \"id\": \"xxxx\", (string) name of softfork\n" |