mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 19:46:39 +00:00
fixed windows build problem
This commit is contained in:
parent
0a600a03ee
commit
8aea85e374
1 changed files with 1 additions and 1 deletions
|
|
@ -647,7 +647,7 @@ func newIpcClient(cfg IpcConfig, codec codec.Codec) (*ipcClient, error) {
|
||||||
return &ipcClient{codec.New(c)}, nil
|
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
|
os.Remove(cfg.Endpoint) // in case it still exists from a previous run
|
||||||
|
|
||||||
l, err := Listen(cfg.Endpoint)
|
l, err := Listen(cfg.Endpoint)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue