I am trying to get a private XinFin node up and running, by following this guide.
Steps to reproduce:
- Follow the guide in the link, using
puppeth
from the XDPoS Chain repo to generatebootnode.key
andgenesis.json
. - As per the aforementioned guide, clone the Local_DPoS_Setup repo and replace
genesis.json
andbootnode.key
. - Update
.env
to include your private keys. - Edit
run.sh
to change the project directory and the enode urls generated from the first step.
However, I am getting the following error at the very last step, after setting everything up and executing run.sh
.
Error Message:
Fatal: Error starting protocol stack: bad bootstrap/fallback node "enode://b68a56b438e08a1a4f6c4f88aa54b34e88a902433f8027aa2ceadd772dd637c37496fc9a7a5e9220b4a7e492b60bd52b1d2827b7eea0e3089e56c79d9f93045c@[::]:30301" (invalid IP (multicast/unspecified))
Any help/advice debugging this would be much appreciated!
Discussion (3)
You can check out some of the similar issue which can help you out to solve your issue
github.com/ethereum/go-ethereum/is...
github.com/ethereum/go-ethereum/is...
ethereum.stackexchange.com/questio...
You can also check out the detailed guide which can help you out in setting up the private network hackernoon.com/how-to-set-up-a-pri...
You can expose bootnode on ipv4 with all ip binded to machine using below command.
--bootnodes "enode://BOOT_NODE_KEY_HERE@0.0.0.0:30301"
Thank you @theabdullahalam for info , We would reproduce issue and get back to you with solution.