From 86d33b27628caf3dbf084a24d2b45d142e45a19f Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Tue, 16 Jan 2018 14:14:28 +0100 Subject: [PATCH] Remove double registration of "privatesend" RPC (#1853) --- src/wallet/rpcwallet.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index b1c34b5e42..cf00ee0f14 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2707,8 +2707,6 @@ extern UniValue importmulti(const JSONRPCRequest& request); extern UniValue dumphdinfo(const JSONRPCRequest& request); extern UniValue importelectrumwallet(const JSONRPCRequest& request); -extern UniValue privatesend(const JSONRPCRequest& request); - static const CRPCCommand commands[] = { // category name actor (function) okSafeMode // --------------------- ------------------------ ----------------------- ---------- @@ -2763,8 +2761,6 @@ static const CRPCCommand commands[] = { "wallet", "instantsendtoaddress", &instantsendtoaddress, false }, { "wallet", "dumphdinfo", &dumphdinfo, true }, { "wallet", "importelectrumwallet", &importelectrumwallet, true }, - - { "dash", "privatesend", &privatesend, false }, }; void RegisterWalletRPCCommands(CRPCTable &t)