Go-Ethereum
未找到引導節點命令
在這個部落格上工作
試圖初始化引導節點拋出和錯誤
可能你已經得到了答案,但因為這個文章沒有答案。所以這是你的答案。
這是 ethereum ci 包中的一個錯誤(請在此處查看),您可以使用以下命令安裝 bootnode。
sudo add-apt-repository -y ppa:ethereum/ethereum sudo apt-get update sudo apt-get install bootnode
幫助命令的一部分
NETWORKING OPTIONS: --bootnodes value Comma separated enode URLs for P2P discovery bootstrap (set v4+v5 instead for light servers) --bootnodesv4 value Comma separated enode URLs for P2P v4 discovery bootstrap (light server, full nodes) --bootnodesv5 value Comma separated enode URLs for P2P v5 discovery bootstrap (light server, light nodes)
您應該能夠像這裡的範例一樣執行
https://github.com/ethereum/go-ethereum/wiki/Connecting-to-the-network#how-peers-are-found
geth --bootnodes enode://pubkey1@ip1:port1,enode://pubkey2@ip2:port2,enode://pubkey3@ip3:port3