diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-22 07:47:17 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-24 19:45:11 +0800 |
commit | 6512b23b98de070f9b68fed4f1530f66dfea4b66 (patch) | |
tree | 217d76c978b3015f303293a10ae43b69b2fcc90c | |
parent | 7b2f25b57886133e3dd09f3ea0b0a7f188755965 (diff) | |
download | go-tangerine-6512b23b98de070f9b68fed4f1530f66dfea4b66.tar.gz go-tangerine-6512b23b98de070f9b68fed4f1530f66dfea4b66.tar.zst go-tangerine-6512b23b98de070f9b68fed4f1530f66dfea4b66.zip |
cli: fatal error if rpc could not be started
-rw-r--r-- | cmd/geth/main.go | 4 | ||||
-rw-r--r-- | cmd/utils/flags.go | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index a155e0a33..083d1c88a 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -354,7 +354,9 @@ func startEth(ctx *cli.Context, eth *eth.Ethereum) { } // Start auxiliary services if enabled. if ctx.GlobalBool(utils.RPCEnabledFlag.Name) { - utils.StartRPC(eth, ctx) + if err := utils.StartRPC(eth, ctx); err != nil { + utils.Fatalf("Error starting RPC: %v", err) + } } if ctx.GlobalBool(utils.MiningEnabledFlag.Name) { eth.StartMining() diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 78d9c7afd..53e2694c5 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -330,7 +330,7 @@ func GetAccountManager(ctx *cli.Context) *accounts.Manager { return accounts.NewManager(ks) } -func StartRPC(eth *eth.Ethereum, ctx *cli.Context) { +func StartRPC(eth *eth.Ethereum, ctx *cli.Context) error { config := rpc.RpcConfig{ ListenAddress: ctx.GlobalString(RPCListenAddrFlag.Name), ListenPort: uint(ctx.GlobalInt(RPCPortFlag.Name)), @@ -338,7 +338,7 @@ func StartRPC(eth *eth.Ethereum, ctx *cli.Context) { } xeth := xeth.New(eth, nil) - _ = rpc.Start(xeth, config) + return rpc.Start(xeth, config) } func StartPProf(ctx *cli.Context) { |