Add a --bootnodes
flag for reth node
#858
Labels
A-cli
Related to the reth CLI
C-enhancement
New feature or request
D-good-first-issue
Nice and easy! A great choice to get started
Describe the feature
Currently we always use mainnet bootnodes, but they should be resolved loading the bootnodes chainspec (should be handled in #485). We should also provide the ability to override the bootnodes by specifying a
--bootnodes
flag.The format should be
--bootnodes <enrs>
where<enrs>
is a comma-seperated list of Ethereum node records.The type should be
Option<Vec<NodeRecord>>
.Additional context
To parse comma-separated values, clap provides
value_delimiter
. Example:The text was updated successfully, but these errors were encountered: