Browse Source

on search method: value is type str, expected obj

miguelfreitas
erqan 9 years ago
parent
commit
2ad8f98bc3
  1. 1
      src/bitcoinrpc.cpp

1
src/bitcoinrpc.cpp

@ -1344,6 +1344,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri @@ -1344,6 +1344,7 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri
if (strMethod == "getspamposts" && n > 1) ConvertTo<boost::int64_t>(params[1]);
if (strMethod == "getspamposts" && n > 2) ConvertTo<boost::int64_t>(params[2]);
if (strMethod == "search" && n > 2) ConvertTo<boost::int64_t>(params[2]);
if (strMethod == "search" && n > 3) ConvertTo<Object>(params[3]);
if (strMethod == "newgroupinvite" && n > 1) ConvertTo<boost::int64_t>(params[1]);
if (strMethod == "newgroupinvite" && n > 3) ConvertTo<Array>(params[3]);
if (strMethod == "newgroupdescription" && n > 1) ConvertTo<boost::int64_t>(params[1]);

Loading…
Cancel
Save