New ledger code.

This commit is contained in:
JoelKatz
2012-06-09 02:22:15 -07:00
parent 51ba107e2c
commit eaf511ebb6
2 changed files with 23 additions and 5 deletions

View File

@@ -2143,12 +2143,13 @@ Json::Value RPCServer::doCommand(const std::string& command, Json::Value& params
if (command == "wallet_propose") return doWalletPropose(params);
if (command == "wallet_seed") return doWalletSeed(params);
if (command=="ledger") return doLedger(params);
//
// Obsolete or need rewrite:
//
if (command=="tx") return doTx(params);
if (command=="ledger") return doLedger(params);
return "unknown command";
}