Skip to content

Commit

Permalink
Remove extraneous comma. Run gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasstevens89 committed Apr 7, 2020
1 parent e42fd23 commit ee72946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrum/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func NewServer(opts *ServerOptions) *Server {
}

// ConnectTCP connects to the remote server using TCP.
func (s *Server) ConnectTCP(addr string, ) error {
func (s *Server) ConnectTCP(addr string) error {
if s.transport != nil {
return ErrServerConnected
}
Expand Down Expand Up @@ -372,4 +372,4 @@ func (s *Server) IsShutdown() bool {
default:
}
return false
}
}

0 comments on commit ee72946

Please sign in to comment.