aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-08 19:50:36 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:01:39 +0800
commit8aea85e374f3e95a899a923ce84423ddc11eb286 (patch)
treef6dfeff7c329ad85838b3778d004d4e13c76958e /rpc
parent0a600a03eeb5a7928233e541f26c0c81c70929fe (diff)
downloadgo-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar.gz
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar.bz2
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar.lz
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar.xz
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.tar.zst
go-tangerine-8aea85e374f3e95a899a923ce84423ddc11eb286.zip
fixed windows build problem
Diffstat (limited to 'rpc')
-rw-r--r--rpc/comms/ipc_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/comms/ipc_windows.go b/rpc/comms/ipc_windows.go
index ff9015d03..d989f0b2b 100644
--- a/rpc/comms/ipc_windows.go
+++ b/rpc/comms/ipc_windows.go
@@ -647,7 +647,7 @@ func newIpcClient(cfg IpcConfig, codec codec.Codec) (*ipcClient, error) {
return &ipcClient{codec.New(c)}, nil
}
-func startIpc(cfg IpcConfig, codec codec.Codec, api api.Ethereum) error {
+func startIpc(cfg IpcConfig, codec codec.Codec, api api.EthereumApi) error {
os.Remove(cfg.Endpoint) // in case it still exists from a previous run
l, err := Listen(cfg.Endpoint)