Skip to content

Commit

Permalink
chore: remove abci socket implementation (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsan-line authored Dec 28, 2020
1 parent e065068 commit cf4fbb6
Show file tree
Hide file tree
Showing 19 changed files with 45 additions and 969 deletions.
4 changes: 1 addition & 3 deletions abci/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ type Client interface {
//----------------------------------------

// NewClient returns a new ABCI client of the specified transport type.
// It returns an error if the transport is not "socket" or "grpc"
// It returns an error if the transport is not "grpc"
func NewClient(addr, transport string, mustConnect bool) (client Client, err error) {
switch transport {
case "socket":
client = NewSocketClient(addr, mustConnect)
case "grpc":
client = NewGRPCClient(addr, mustConnect)
default:
Expand Down
Loading

0 comments on commit cf4fbb6

Please sign in to comment.