diff options
| author | MarcoFalke <[email protected]> | 2016-08-20 22:55:41 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-01-01 18:02:12 +0100 |
| commit | fa38d3df69851212fea7544badadc1c3e5369bf5 (patch) | |
| tree | b27113f062c60682952517260dbca707a0df6a66 /src | |
| parent | Merge #13743: refactor: Replace boost::bind with std::bind (diff) | |
| download | discoin-fa38d3df69851212fea7544badadc1c3e5369bf5.tar.xz discoin-fa38d3df69851212fea7544badadc1c3e5369bf5.zip | |
[rpc] Correct reconsiderblock help text, add test
Diffstat (limited to 'src')
| -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 ec87f42c9..bd229e5ef 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1565,7 +1565,7 @@ static UniValue reconsiderblock(const JSONRPCRequest& request) if (request.fHelp || request.params.size() != 1) throw std::runtime_error( RPCHelpMan{"reconsiderblock", - "\nRemoves invalidity status of a block and its descendants, reconsider them for activation.\n" + "\nRemoves invalidity status of a block, its ancestors and its descendants, reconsider them for activation.\n" "This can be used to undo the effects of invalidateblock.\n", { {"blockhash", RPCArg::Type::STR_HEX, /* opt */ false, /* default_val */ "", "the hash of the block to reconsider"}, |