You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/wallet/rpc/backup.cpp
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -201,6 +201,8 @@ RPCHelpMan importaddress()
201
201
"\nAdds an address or script (in hex) that can be watched as if it were in your wallet but cannot be used to spend. Requires a new wallet backup.\n"
202
202
"\nNote: This call can take over an hour to complete if rescan is true, during that time, other rpc calls\n"
203
203
"may report that the imported address exists but related transactions are still missing, leading to temporarily incorrect/bogus balances and unspent outputs until rescan completes.\n"
204
+
"The rescan parameter can be set to false if the key was never used to create transactions. If it is set to false,\n"
205
+
"but the key was used to create transactions, rescanwallet needs to be called with the appropriate block range.\n"
204
206
"If you have the full public key, you should call importpubkey instead of this.\n"
205
207
"Hint: use importmulti to import more than one address.\n"
206
208
"\nNote: If you import a non-standard raw script in hex form, outputs sending to it will be treated\n"
@@ -209,7 +211,7 @@ RPCHelpMan importaddress()
209
211
{
210
212
{"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The Bitcoin address (or hex-encoded script)"},
0 commit comments