mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
rpc, wallet: Document mempool rescan after importdescriptor, importwallet
This commit is contained in:
parent
0e396d1ba7
commit
833ce76df7
1 changed files with 2 additions and 2 deletions
|
@ -489,7 +489,7 @@ RPCHelpMan importwallet()
|
||||||
{
|
{
|
||||||
return RPCHelpMan{"importwallet",
|
return RPCHelpMan{"importwallet",
|
||||||
"\nImports keys from a wallet dump file (see dumpwallet). Requires a new wallet backup to include imported keys.\n"
|
"\nImports keys from a wallet dump file (see dumpwallet). Requires a new wallet backup to include imported keys.\n"
|
||||||
"Note: Use \"getwalletinfo\" to query the scanning progress.\n",
|
"Note: Blockchain and Mempool will be rescanned after a successful import. Use \"getwalletinfo\" to query the scanning progress.\n",
|
||||||
{
|
{
|
||||||
{"filename", RPCArg::Type::STR, RPCArg::Optional::NO, "The wallet file"},
|
{"filename", RPCArg::Type::STR, RPCArg::Optional::NO, "The wallet file"},
|
||||||
},
|
},
|
||||||
|
@ -1600,7 +1600,7 @@ RPCHelpMan importdescriptors()
|
||||||
" Use the string \"now\" to substitute the current synced blockchain time.\n"
|
" Use the string \"now\" to substitute the current synced blockchain time.\n"
|
||||||
" \"now\" can be specified to bypass scanning, for outputs which are known to never have been used, and\n"
|
" \"now\" can be specified to bypass scanning, for outputs which are known to never have been used, and\n"
|
||||||
" 0 can be specified to scan the entire blockchain. Blocks up to 2 hours before the earliest timestamp\n"
|
" 0 can be specified to scan the entire blockchain. Blocks up to 2 hours before the earliest timestamp\n"
|
||||||
" of all descriptors being imported will be scanned.",
|
"of all descriptors being imported will be scanned as well as the mempool.",
|
||||||
/*oneline_description=*/"", {"timestamp | \"now\"", "integer / string"}
|
/*oneline_description=*/"", {"timestamp | \"now\"", "integer / string"}
|
||||||
},
|
},
|
||||||
{"internal", RPCArg::Type::BOOL, RPCArg::Default{false}, "Whether matching outputs should be treated as not incoming payments (e.g. change)"},
|
{"internal", RPCArg::Type::BOOL, RPCArg::Default{false}, "Whether matching outputs should be treated as not incoming payments (e.g. change)"},
|
||||||
|
|
Loading…
Add table
Reference in a new issue