Go-Ethereum

如何解決 clique is not defined 錯誤?

  • March 5, 2022

我有一個 PoA 網路,一切看起來都正常。但我不能讓派係出現在geth。

> clique
ReferenceError: 'clique' is not defined
   at <anonymous>:1:1

有沒有人知道這個的原因?

它在 geth 連接上需要 IPC。

嘗試從數據文件夾中刪除 geth 文件夾。然後重新初始化 genesis.json 到數據文件夾。如果您的數據文件夾是 node1/

geth --datadir node1/ init genesis.json

使用 geth 執行節點後測試您的設置。連接到ipc

geth attach ipc:node1/geth.ipc

連接成功後檢查clique。請確保 geth.ipc 在 node1/ 文件夾中

引用自:https://ethereum.stackexchange.com/questions/50231