mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-24 18:23:26 -03:00
RPC/Blockchain: scanblocks: Accept named param for filter_false_positives
This commit is contained in:
parent
96ec3b67a7
commit
5779010ed7
2 changed files with 2 additions and 1 deletions
|
@ -2309,7 +2309,7 @@ static RPCHelpMan scanblocks()
|
|||
RPCArg{"start_height", RPCArg::Type::NUM, RPCArg::Default{0}, "Height to start to scan from"},
|
||||
RPCArg{"stop_height", RPCArg::Type::NUM, RPCArg::DefaultHint{"chain tip"}, "Height to stop to scan"},
|
||||
RPCArg{"filtertype", RPCArg::Type::STR, RPCArg::Default{BlockFilterTypeName(BlockFilterType::BASIC)}, "The type name of the filter"},
|
||||
RPCArg{"options", RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, "",
|
||||
RPCArg{"options", RPCArg::Type::OBJ_NAMED_PARAMS, RPCArg::Optional::OMITTED, "",
|
||||
{
|
||||
{"filter_false_positives", RPCArg::Type::BOOL, RPCArg::Default{false}, "Filter false positives (slower and may fail on pruned nodes). Otherwise they may occur at a rate of 1/M"},
|
||||
},
|
||||
|
|
|
@ -91,6 +91,7 @@ static const CRPCConvertParam vRPCConvertParams[] =
|
|||
{ "scanblocks", 2, "start_height" },
|
||||
{ "scanblocks", 3, "stop_height" },
|
||||
{ "scanblocks", 5, "options" },
|
||||
{ "scanblocks", 5, "filter_false_positives" },
|
||||
{ "scantxoutset", 1, "scanobjects" },
|
||||
{ "addmultisigaddress", 0, "nrequired" },
|
||||
{ "addmultisigaddress", 1, "keys" },
|
||||
|
|
Loading…
Add table
Reference in a new issue