Skip to content

Commit

Permalink
chore: remove abci socket implementation (#153)
Browse files Browse the repository at this point in the history
# Conflicts:
#	abci/client/socket_client.go
#	abci/client/socket_client_test.go
#	abci/example/example_test.go
#	abci/example/kvstore/kvstore_test.go
#	abci/server/socket_server.go
#	config/config.go
#	test/app/test.sh
  • Loading branch information
jinsan-line committed Apr 15, 2021
1 parent afe46e5 commit ea191cd
Show file tree
Hide file tree
Showing 19 changed files with 46 additions and 1,105 deletions.
4 changes: 1 addition & 3 deletions abci/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,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 ea191cd

Please sign in to comment.