Skip to content

Commit

Permalink
websocket/client.go: errors should start lowercased.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnx committed Jun 19, 2023
1 parent 9cd3426 commit a4e1c4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions websocket/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
)

var (
ErrNotConnected = errors.New("Socket not connected")
ErrDecodeABI = errors.New("Failed to decode ABI")
ErrNotConnected = errors.New("socket not connected")
ErrDecodeABI = errors.New("failed to decode ABI")
ErrExpectedABI = errors.New("expected abi message")
ErrExpectedBinaryMessage = errors.New("expected binary message")
)
Expand Down

0 comments on commit a4e1c4b

Please sign in to comment.