Merge pull request #2116 from sipa/importrescanbool

Convert fRescan argument to importprivkey to bool
This commit is contained in:
Gavin Andresen 2012-12-21 06:30:53 -08:00
commit 23826f1b7f
1 changed files with 1 additions and 0 deletions

View File

@ -1219,6 +1219,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri
if (strMethod == "gettxout" && n > 2) ConvertTo<bool>(params[2]);
if (strMethod == "lockunspent" && n > 0) ConvertTo<bool>(params[0]);
if (strMethod == "lockunspent" && n > 1) ConvertTo<Array>(params[1]);
if (strMethod == "importprivkey" && n > 2) ConvertTo<bool>(params[2]);
return params;
}