From ac3abaa831898fa633de8519068036c7a9f8cd92 Mon Sep 17 00:00:00 2001 From: Tomas M Date: Tue, 21 Aug 2018 22:47:08 +0200 Subject: [PATCH] fix duplicite function definition --- src/rpc/server.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 0cc4f27a676..ba5e3062043 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -477,16 +477,6 @@ string experimentalDisabledHelpMsg(const string& rpc, const string& enableArg) + enableArg + "=1\n"; } -string experimentalDisabledHelpMsg(const string& rpc, const string& enableArg) -{ - return "\nWARNING: " + rpc + " is disabled.\n" - "To enable it, restart zcashd with the -experimentalfeatures and\n" - "-" + enableArg + " commandline options, or add these two lines\n" - "to the zcash.conf file:\n\n" - "experimentalfeatures=1\n" - + enableArg + "=1\n"; -} - void RPCRegisterTimerInterface(RPCTimerInterface *iface) { timerInterfaces.push_back(iface);