diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-23 23:47:05 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-23 23:47:05 +0800 |
commit | 211cb03f83c8bdfd29af31fd27dc531dfcb13630 (patch) | |
tree | 7c1296a6194db41a8d8b25a89dd7aa442d6b4fe5 /cmd/utils | |
parent | 253ecdc8bba1b522e80fdee69410854f19a5a972 (diff) | |
parent | 9562a9840f783e6252ebc6fb8da62b81004f62e8 (diff) | |
download | dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar.gz dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar.bz2 dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar.lz dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar.xz dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.tar.zst dexon-211cb03f83c8bdfd29af31fd27dc531dfcb13630.zip |
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to 'cmd/utils')
-rw-r--r-- | cmd/utils/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index f87d25ce9..9a4ab5804 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -256,7 +256,7 @@ func StartRPC(eth *eth.Ethereum, ctx *cli.Context) { addr := ctx.GlobalString(RPCListenAddrFlag.Name) port := ctx.GlobalInt(RPCPortFlag.Name) dataDir := ctx.GlobalString(DataDirFlag.Name) - + fmt.Println("Starting RPC on port: ", port) l, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, port)) if err != nil { Fatalf("Can't listen on %s:%d: %v", addr, port, err) |