Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pnowosie committed Oct 23, 2024
1 parent 19641b8 commit 21c8504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 21c8504

Please sign in to comment.