server: use cmn.ProtocolAndAddress

This commit is contained in:
Ethan Buchman 2017-10-25 23:04:20 -04:00
parent bb9bb4aa46
commit 6c41ec65bc
2 changed files with 2 additions and 6 deletions

View File

@ -2,7 +2,6 @@ package server
import (
"net"
"strings"
"google.golang.org/grpc"
@ -23,8 +22,7 @@ type GRPCServer struct {
// NewGRPCServer returns a new gRPC ABCI server
func NewGRPCServer(protoAddr string, app types.ABCIApplicationServer) cmn.Service {
parts := strings.SplitN(protoAddr, "://", 2)
proto, addr := parts[0], parts[1]
proto, addr := cmn.ProtocolAndAddress(protoAddr)
s := &GRPCServer{
proto: proto,
addr: addr,

View File

@ -5,7 +5,6 @@ import (
"fmt"
"io"
"net"
"strings"
"sync"
"github.com/tendermint/abci/types"
@ -30,8 +29,7 @@ type SocketServer struct {
}
func NewSocketServer(protoAddr string, app types.Application) cmn.Service {
parts := strings.SplitN(protoAddr, "://", 2)
proto, addr := parts[0], parts[1]
proto, addr := cmn.ProtocolAndAddress(protoAddr)
s := &SocketServer{
proto: proto,
addr: addr,