From e7529d022144e1c204af617bf022a341be259665 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 3 May 2013 13:59:04 -0700 Subject: [PATCH] Report the correct error if someone tries to use the evented path_find through the RPC API. (Maybe we'll add limited support for this later.) --- src/cpp/ripple/CallRPC.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpp/ripple/CallRPC.cpp b/src/cpp/ripple/CallRPC.cpp index 5fba686ac..268cda572 100644 --- a/src/cpp/ripple/CallRPC.cpp +++ b/src/cpp/ripple/CallRPC.cpp @@ -736,6 +736,7 @@ Json::Value RPCParser::parseCommand(std::string strMethod, Json::Value jvParams) #endif // Evented methods + { "path_find", &RPCParser::parseEvented, -1, -1 }, { "subscribe", &RPCParser::parseEvented, -1, -1 }, { "unsubscribe", &RPCParser::parseEvented, -1, -1 }, };