Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rianhughes committed Oct 23, 2024
1 parent a2b3e00 commit 39b9dd9
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 @@ -187,7 +187,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 @@ -350,7 +350,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 39b9dd9

Please sign in to comment.