Use non-standard port so tests don't die when I am running basecoin

This commit is contained in:
Ethan Frey
2017-04-28 14:03:38 +02:00
parent 2bf7e9c968
commit 194f345470
2 changed files with 4 additions and 4 deletions

2
glide.lock generated
View File

@ -119,7 +119,7 @@ imports:
subpackages: subpackages:
- term - term
- name: github.com/tendermint/merkleeyes - name: github.com/tendermint/merkleeyes
version: 0fab643ccac1a3f93b90e0e2682a5d1b9d17f8c4 version: ea4dd9c7b773435de26bf59fddf90afd43a07d67
subpackages: subpackages:
- app - app
- client - client

View File

@ -20,10 +20,10 @@ import (
// Client and Server should work over tcp or unix sockets // Client and Server should work over tcp or unix sockets
const ( const (
tcpAddr = "tcp://0.0.0.0:46657" tcpAddr = "tcp://0.0.0.0:47768"
unixSocket = "/tmp/rpc.sock" unixSocket = "/tmp/rpc_test.sock"
unixAddr = "unix:///tmp/rpc.sock" unixAddr = "unix://" + unixSocket
websocketEndpoint = "/websocket/endpoint" websocketEndpoint = "/websocket/endpoint"
) )