diff options
| author | Gavin Andresen <[email protected]> | 2011-01-18 14:35:50 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-01-18 14:35:50 -0500 |
| commit | b4671902f2c5aa1c95be547a61b0a72b8a3025de (patch) | |
| tree | c9de69cd651024487fed16ec890e20ef1e721202 /rpc.cpp | |
| parent | Merge branch 'gettransaction' of https://github.com/gavinandresen/bitcoin-git... (diff) | |
| parent | Fix so listaccounts with minconf works. (diff) | |
| download | discoin-b4671902f2c5aa1c95be547a61b0a72b8a3025de.tar.xz discoin-b4671902f2c5aa1c95be547a61b0a72b8a3025de.zip | |
Merge branch 'listaccountsbug' of https://github.com/gavinandresen/bitcoin-git into integration
Diffstat (limited to 'rpc.cpp')
| -rw-r--r-- | rpc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1029,8 +1029,8 @@ Value listaccounts(const Array& params, bool fHelp) "Returns Object that has account names as keys, account balances as values."); int nMinDepth = 1; - if (params.size() > 1) - nMinDepth = params[1].get_int(); + if (params.size() > 0) + nMinDepth = params[0].get_int(); map<string, int64> mapAccountBalances; CRITICAL_BLOCK(cs_mapWallet) @@ -1954,7 +1954,7 @@ int CommandLineRPC(int argc, char *argv[]) if (strMethod == "sendfrom" && n > 2) ConvertTo<double>(params[2]); if (strMethod == "sendfrom" && n > 3) ConvertTo<boost::int64_t>(params[3]); if (strMethod == "listtransactions" && n > 1) ConvertTo<boost::int64_t>(params[1]); - if (strMethod == "listaccounts" && n > 1) ConvertTo<boost::int64_t>(params[1]); + if (strMethod == "listaccounts" && n > 0) ConvertTo<boost::int64_t>(params[0]); // Execute Object reply = CallRPC(strMethod, params); |