diff --git a/src/rpc/jsonrpcrequest.cpp b/src/rpc/jsonrpcrequest.cpp --- a/src/rpc/jsonrpcrequest.cpp +++ b/src/rpc/jsonrpcrequest.cpp @@ -29,10 +29,8 @@ throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string"); } strMethod = valMethod.get_str(); - if (strMethod != "getblocktemplate") { - LogPrint(BCLog::RPC, "ThreadRPCServer method=%s\n", - SanitizeString(strMethod)); - } + LogPrint(BCLog::RPC, "ThreadRPCServer method=%s\n", + SanitizeString(strMethod)); // Parse params UniValue valParams = find_value(request, "params");