Skip to content

Commit 1eb9a9b

Browse files
committed
[RPC] Remove warning for removed estimatefee RPC
The RPC was removed in a previous version, but a warning was left for users to use the estimatesmartfee RPC. Remove that warning now that estimatefee has been gone for over one version.
1 parent 920c090 commit 1eb9a9b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/rpc/mining.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -795,12 +795,6 @@ static UniValue submitheader(const JSONRPCRequest& request)
795795
throw JSONRPCError(RPC_VERIFY_ERROR, state.GetRejectReason());
796796
}
797797

798-
static UniValue estimatefee(const JSONRPCRequest& request)
799-
{
800-
throw JSONRPCError(RPC_METHOD_DEPRECATED, "estimatefee was removed in v0.17.\n"
801-
"Clients should use estimatesmartfee.");
802-
}
803-
804798
static UniValue estimatesmartfee(const JSONRPCRequest& request)
805799
{
806800
if (request.fHelp || request.params.size() < 1 || request.params.size() > 2)
@@ -978,7 +972,6 @@ static const CRPCCommand commands[] =
978972

979973
{ "generating", "generatetoaddress", &generatetoaddress, {"nblocks","address","maxtries"} },
980974

981-
{ "hidden", "estimatefee", &estimatefee, {} },
982975
{ "util", "estimatesmartfee", &estimatesmartfee, {"conf_target", "estimate_mode"} },
983976

984977
{ "hidden", "estimaterawfee", &estimaterawfee, {"conf_target", "threshold"} },

0 commit comments

Comments
 (0)