Browse Source

Explicitly ensure that wallet is unlocked in `importprivkey`

This makes for a more useful error reply (fixes #957).
pull/145/head
Wladimir J. van der Laan 11 years ago
parent
commit
d78f35a909
  1. 2
      src/rpcdump.cpp

2
src/rpcdump.cpp

@ -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)

Loading…
Cancel
Save