From 62326fab7f7944a6e2173d661e253c85792ef7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Nowosielski?= Date: Wed, 23 Oct 2024 14:19:38 +0200 Subject: [PATCH] fix linter --- rpc/handlers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpc/handlers.go b/rpc/handlers.go index eed409113e..d41ca5eeb8 100644 --- a/rpc/handlers.go +++ b/rpc/handlers.go @@ -184,7 +184,7 @@ func (h *Handler) SpecVersionV0_7() (string, *jsonrpc.Error) { return "0.7.1", nil } -func (h *Handler) Methods() ([]jsonrpc.Method, string) { //nolint: funlen, dupl +func (h *Handler) Methods() ([]jsonrpc.Method, string) { //nolint: funlen return []jsonrpc.Method{ { Name: "starknet_chainId", @@ -343,7 +343,7 @@ func (h *Handler) Methods() ([]jsonrpc.Method, string) { //nolint: funlen, dupl }, "/v0_8" } -func (h *Handler) MethodsV0_7() ([]jsonrpc.Method, string) { //nolint: funlen, dupl +func (h *Handler) MethodsV0_7() ([]jsonrpc.Method, string) { //nolint: funlen return []jsonrpc.Method{ { Name: "starknet_chainId",