Explicitly ensure that wallet is unlocked in `importprivkey`

This makes for a more useful error reply (fixes #957).
This commit is contained in:
Wladimir J. van der Laan 2013-12-23 07:16:56 +01:00
parent f46babc8c8
commit d78f35a909
1 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,8 @@ Value importprivkey(const Array& params, bool fHelp)
+ HelpExampleRpc("importprivkey", "\"mykey\", \"testing\", false")
);
EnsureWalletIsUnlocked();
string strSecret = params[0].get_str();
string strLabel = "";
if (params.size() > 1)