From de8722745c527e9cf26f3cb369f53ff38e7f20e5 Mon Sep 17 00:00:00 2001 From: willcl-ark Date: Tue, 20 Feb 2024 10:31:37 +0000 Subject: [PATCH] fixup! rpc: use cachedEstimates in estimatefeewithmempool --- src/rpc/client.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index 19107ecf803e10..688f58377e69a7 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -249,8 +249,9 @@ static const CRPCConvertParam vRPCConvertParams[] = { "getrawmempool", 1, "mempool_sequence" }, { "estimatesmartfee", 0, "conf_target" }, { "estimaterawfee", 0, "conf_target" }, - { "estimatesfeewithmempool", 0, "conf_target" }, { "estimaterawfee", 1, "threshold" }, + { "estimatefeewithmempool", 0, "conf_target" }, + { "estimatefeewithmempool", 1, "force" }, { "prioritisetransaction", 1, "dummy" }, { "prioritisetransaction", 2, "fee_delta" }, { "setban", 2, "bantime" },