Clarify importprivkey help text with example of blank label without rescan
Occasionally I waste a lot of time not remembering that the second parameter to importprivkey must be blank if you intend to stop rescan with "false" as the third parameter.
This commit is contained in:
parent
b7365f0545
commit
c9e31c36ff
1 changed files with 2 additions and 0 deletions
|
@ -95,6 +95,8 @@ UniValue importprivkey(const JSONRPCRequest& request)
|
||||||
+ HelpExampleCli("importprivkey", "\"mykey\"") +
|
+ HelpExampleCli("importprivkey", "\"mykey\"") +
|
||||||
"\nImport using a label and without rescan\n"
|
"\nImport using a label and without rescan\n"
|
||||||
+ HelpExampleCli("importprivkey", "\"mykey\" \"testing\" false") +
|
+ HelpExampleCli("importprivkey", "\"mykey\" \"testing\" false") +
|
||||||
|
"\nImport using default blank label and without rescan\n"
|
||||||
|
+ HelpExampleCli("importprivkey", "\"mykey\" \"\" false") +
|
||||||
"\nAs a JSON-RPC call\n"
|
"\nAs a JSON-RPC call\n"
|
||||||
+ HelpExampleRpc("importprivkey", "\"mykey\", \"testing\", false")
|
+ HelpExampleRpc("importprivkey", "\"mykey\", \"testing\", false")
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue