RPC: keypoolrefill gains optional size parameter

This commit is contained in:
Jeff Garzik
2013-06-25 16:21:42 -04:00
parent 13dd2d090e
commit 36bd46f1c4
2 changed files with 12 additions and 4 deletions

View File

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