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

View File

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