diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-09 15:48:18 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:41 +0800 |
commit | 09d0d55fc579701191ff34f38cc20b437ee23577 (patch) | |
tree | 16f77a960c7428145961891b7f116e25dc6daf1b /rpc/comms/ipc_unix.go | |
parent | faab931ce1282dea50c8fdf0577c42ee67f69828 (diff) | |
download | go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.gz go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.zst go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.zip |
added debug API
Diffstat (limited to 'rpc/comms/ipc_unix.go')
-rw-r--r-- | rpc/comms/ipc_unix.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rpc/comms/ipc_unix.go b/rpc/comms/ipc_unix.go index bb09d9547..5a94fd1e0 100644 --- a/rpc/comms/ipc_unix.go +++ b/rpc/comms/ipc_unix.go @@ -3,9 +3,9 @@ package comms import ( - "io" + "io" "net" - "os" + "os" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" @@ -70,8 +70,8 @@ func startIpc(cfg IpcConfig, codec codec.Codec, api api.EthereumApi) error { os.Remove(cfg.Endpoint) }() - - glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint) - + + glog.V(logger.Info).Infof("IPC service started (%s)\n", cfg.Endpoint) + return nil } |