aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-05-13 17:48:52 +0800
committerMaran <maran.hidskes@gmail.com>2014-05-13 17:50:39 +0800
commitb9876df5dc719f583172017cc71af146c6f732a9 (patch)
treeaed57e24d6cca0ad1f4310fbd5b362849777582c /ethereum
parenta5963d1377ab1a4a82d5b2881e820121ac3da564 (diff)
downloadgo-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar.gz
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar.bz2
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar.lz
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar.xz
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.tar.zst
go-tangerine-b9876df5dc719f583172017cc71af146c6f732a9.zip
Added support to NewJsonRpc to return an error as well as an interface
Diffstat (limited to 'ethereum')
-rw-r--r--ethereum/ethereum.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go
index 2f05bf2a1..8ef061be0 100644
--- a/ethereum/ethereum.go
+++ b/ethereum/ethereum.go
@@ -133,8 +133,12 @@ func main() {
go console.Start()
}
if StartRpc {
- ethereum.RpcServer = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
- go ethereum.RpcServer.Start()
+ ethereum.RpcServer, err = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
+ if err != nil {
+ logger.Infoln("Could not start RPC interface:", err)
+ } else {
+ go ethereum.RpcServer.Start()
+ }
}
RegisterInterrupts(ethereum)