From a3a15754b4b6a9fde3da9387e31b3b21f21005a9 Mon Sep 17 00:00:00 2001 From: Nathan Nichols Date: Mon, 27 Jun 2022 16:00:36 -0400 Subject: [PATCH] forward channel_verify and channel_authorize (#196) --- src/rpc/RPC.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rpc/RPC.cpp b/src/rpc/RPC.cpp index 840d1660f..f0227f6bd 100644 --- a/src/rpc/RPC.cpp +++ b/src/rpc/RPC.cpp @@ -188,8 +188,6 @@ static HandlerTable handlerTable{ {"gateway_balances", &doGatewayBalances, {}}, {"noripple_check", &doNoRippleCheck, {}}, {"book_offers", &doBookOffers, LimitRange{1, 50, 100}}, - {"channel_authorize", &doChannelAuthorize, {}}, - {"channel_verify", &doChannelVerify, {}}, {"ledger", &doLedger, {}}, {"ledger_data", &doLedgerData, LimitRange{1, 100, 2048}}, {"nft_buy_offers", &doNFTBuyOffers, LimitRange{1, 50, 100}}, @@ -210,7 +208,9 @@ static std::unordered_set forwardCommands{ "ledger_closed", "ledger_current", "ripple_path_find", - "manifest"}; + "manifest", + "channel_authorize", + "channel_verify"}; bool validHandler(std::string const& method)