Browse Source

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

pull/467/head
Ethan Frey 7 years ago
parent
commit
194f345470
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      glide.lock
  2. +3
    -3
      rpc/lib/rpc_test.go

+ 1
- 1
glide.lock View File

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


+ 3
- 3
rpc/lib/rpc_test.go 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"
)


Loading…
Cancel
Save