Comment "deprecated"
This commit is contained in:
parent
e1f13129e8
commit
8c2143d4d8
1 changed files with 2 additions and 2 deletions
|
@ -1742,7 +1742,7 @@ string pAllowInSafeMode[] =
|
||||||
"getinfo",
|
"getinfo",
|
||||||
"getnewaddress",
|
"getnewaddress",
|
||||||
"getaccountaddress",
|
"getaccountaddress",
|
||||||
"setlabel",
|
"setlabel", // deprecated
|
||||||
"getaccount",
|
"getaccount",
|
||||||
"getlabel", // deprecated
|
"getlabel", // deprecated
|
||||||
"getaddressesbyaccount",
|
"getaddressesbyaccount",
|
||||||
|
@ -2373,7 +2373,7 @@ int CommandLineRPC(int argc, char *argv[])
|
||||||
if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo<boost::int64_t>(params[1]);
|
if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo<boost::int64_t>(params[1]);
|
||||||
if (strMethod == "getreceivedbylabel" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
|
if (strMethod == "getreceivedbylabel" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
|
||||||
if (strMethod == "getallreceived" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
|
if (strMethod == "getallreceived" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
|
||||||
if (strMethod == "getallreceived" && n > 1) ConvertTo<bool>(params[1]);
|
if (strMethod == "getallreceived" && n > 1) ConvertTo<bool>(params[1]); // deprecated
|
||||||
if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo<boost::int64_t>(params[0]);
|
if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo<boost::int64_t>(params[0]);
|
||||||
if (strMethod == "listreceivedbyaddress" && n > 1) ConvertTo<bool>(params[1]);
|
if (strMethod == "listreceivedbyaddress" && n > 1) ConvertTo<bool>(params[1]);
|
||||||
if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo<boost::int64_t>(params[0]);
|
if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo<boost::int64_t>(params[0]);
|
||||||
|
|
Loading…
Reference in a new issue