如何修复geth的错误

时间:2018-03-08 17:55:51

标签: solidity

问)安装geth后在附加时出错。如何修复此错误?

for (int i = 0; i < y.length; i++) {
    if(i%3==0){
    System.out.println(y[i]);
   }//if statement
}//for loop

2 个答案:

答案 0 :(得分:2)

如果您使用的是1.8,则需要包含IPC路径:

geth attach ipc:\\.\pipe\geth.ipc

请参阅https://github.com/ethereum/go-ethereum/issues/15746

答案 1 :(得分:0)

如果您使用 Windows,请尝试:

geth attach http://localhost:8545

这将适用于 Windows 工作。