We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7e73ea commit 1352092Copy full SHA for 1352092
src/rpc/server.cpp
@@ -369,9 +369,7 @@ void JSONRPCRequest::parse(const UniValue& valRequest)
369
if (!valMethod.isStr())
370
throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string");
371
strMethod = valMethod.get_str();
372
- if (strMethod != "getblocktemplate") {
373
- LogPrint(BCLog::RPC, "ThreadRPCServer method=%s\n", SanitizeString(strMethod));
374
- }
+ LogPrint(BCLog::RPC, "ThreadRPCServer method=%s\n", SanitizeString(strMethod));
375
376
// Parse params
377
UniValue valParams = find_value(request, "params");
0 commit comments