Added support to NewJsonRpc to return an error as well as an interface

Also changed default port to 8080. Fixes #18
This commit is contained in:
Maran 2014-05-13 11:49:55 +02:00
parent 3647cc5b07
commit a9d5656a46
1 changed files with 4 additions and 4 deletions

View File

@ -48,15 +48,15 @@ func (s *JsonRpcServer) Start() {
} }
} }
func NewJsonRpcServer(ethp *ethpub.PEthereum) *JsonRpcServer { func NewJsonRpcServer(ethp *ethpub.PEthereum) (*JsonRpcServer, error) {
l, err := net.Listen("tcp", ":30304") l, err := net.Listen("tcp", ":8080")
if err != nil { if err != nil {
ethutil.Config.Log.Infoln("Error starting JSON-RPC") return nil, err
} }
return &JsonRpcServer{ return &JsonRpcServer{
listener: l, listener: l,
quit: make(chan bool), quit: make(chan bool),
ethp: ethp, ethp: ethp,
} }, nil
} }