diff options
author | Jon Atack <jon@atack.com> | 2021-04-30 20:20:05 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-05-01 13:57:26 +0200 |
commit | 5d1050f51647980b1204e3b44b319ab31948d11f (patch) | |
tree | b1805cd68bb37abe398de07ba0095b5ad95114b8 /src/rpc | |
parent | e041ee0a80e5f3e10301acf8512a18864af750cd (diff) |
doc: fix -coinstatsindex help, and test/rpc touchups
Diffstat (limited to 'src/rpc')
-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 59f7657c0e..81cb802357 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1099,7 +1099,7 @@ static RPCHelpMan gettxoutsetinfo() "Note this call may take some time if you are not using coinstatsindex.\n", { {"hash_type", RPCArg::Type::STR, RPCArg::Default{"hash_serialized_2"}, "Which UTXO set hash should be calculated. Options: 'hash_serialized_2' (the legacy algorithm), 'muhash', 'none'."}, - {"hash_or_height", RPCArg::Type::NUM, RPCArg::Optional::OMITTED, "The block hash or height of the target height (only available with coinstatsindex)", "", {"", "string or numeric"}}, + {"hash_or_height", RPCArg::Type::NUM, RPCArg::Optional::OMITTED, "The block hash or height of the target height (only available with coinstatsindex).", "", {"", "string or numeric"}}, {"use_index", RPCArg::Type::BOOL, RPCArg::Default{true}, "Use coinstatsindex, if available."}, }, RPCResult{ |