good morning!!!!

Skip to content
Snippets Groups Projects
Commit ea0517b5 authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Report RPC listening address in logs

parent f6e821fd
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ func NewRpcHttpServer(pipe *xeth.XEth, address string, port int) (*RpcHttpServer
quit: make(chan bool),
pipe: pipe,
port: port,
addr: address,
}, nil
}
......@@ -49,6 +50,7 @@ type RpcHttpServer struct {
listener net.Listener
pipe *xeth.XEth
port int
addr string
}
func (s *RpcHttpServer) exitHandler() {
......@@ -69,7 +71,7 @@ func (s *RpcHttpServer) Stop() {
}
func (s *RpcHttpServer) Start() {
rpchttplogger.Infof("Starting RPC-HTTP server on port %d", s.port)
rpchttplogger.Infof("Starting RPC-HTTP server on %s:%d", s.addr, s.port)
go s.exitHandler()
api := rpc.NewEthereumApi(s.pipe)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment