Skip to content

Commit 452bb90

Browse files
committed
Merge #13507: RPC: Fix parameter count check for importpubkey
3f72d04 Fix parameter count check for importpubkey. (Kristaps Kaupe) Pull request description: Found this while working on #13464. Parameter count check for `importpubkey` was wrong. Tree-SHA512: aba41b666c6493379f320be5e3e438a6cad1a96429102ff4428c092c48f29c2eead2195792c0b018296f20e1c42eb091dd5b9886c42cecbb1f0d03d5def14705
2 parents baf3a3a + 3f72d04 commit 452bb90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcdump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ UniValue importpubkey(const JSONRPCRequest& request)
441441
return NullUniValue;
442442
}
443443

444-
if (request.fHelp || request.params.size() < 1 || request.params.size() > 4)
444+
if (request.fHelp || request.params.size() < 1 || request.params.size() > 3)
445445
throw std::runtime_error(
446446
"importpubkey \"pubkey\" ( \"label\" rescan )\n"
447447
"\nAdds a public key (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"

0 commit comments

Comments
 (0)