Adds bootnode CLI parameter
This commit is contained in:
parent
170f993032
commit
9f8850d0a1
@ -10,6 +10,7 @@ use std::path::PathBuf;
|
|||||||
use types::multiaddr::Protocol;
|
use types::multiaddr::Protocol;
|
||||||
use types::multiaddr::ToMultiaddr;
|
use types::multiaddr::ToMultiaddr;
|
||||||
use types::ChainSpec;
|
use types::ChainSpec;
|
||||||
|
use types::Multiaddr;
|
||||||
|
|
||||||
/// Stores the client configuration for this Lighthouse instance.
|
/// Stores the client configuration for this Lighthouse instance.
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
@ -88,6 +89,17 @@ impl ClientConfig {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Custom bootnodes
|
||||||
|
// TODO: Handle list of addresses
|
||||||
|
if let Some(boot_addresses_str) = args.value_of("boot_nodes") {
|
||||||
|
if let Ok(boot_address) = boot_addresses_str.parse::<Multiaddr>() {
|
||||||
|
config.net_conf.boot_nodes.append(&mut vec![boot_address]);
|
||||||
|
} else {
|
||||||
|
error!(log, "Invalid Bootnode multiaddress"; "Multiaddr" => boot_addresses_str);
|
||||||
|
return Err("Invalid IP Address");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Filesystem related arguments */
|
/* Filesystem related arguments */
|
||||||
|
|
||||||
// Custom datadir
|
// Custom datadir
|
||||||
|
@ -16,6 +16,7 @@ fn main() {
|
|||||||
.version(version::version().as_str())
|
.version(version::version().as_str())
|
||||||
.author("Sigma Prime <contact@sigmaprime.io>")
|
.author("Sigma Prime <contact@sigmaprime.io>")
|
||||||
.about("Eth 2.0 Client")
|
.about("Eth 2.0 Client")
|
||||||
|
// file system related arguments
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("datadir")
|
Arg::with_name("datadir")
|
||||||
.long("datadir")
|
.long("datadir")
|
||||||
@ -23,6 +24,7 @@ fn main() {
|
|||||||
.help("Data directory for keys and databases.")
|
.help("Data directory for keys and databases.")
|
||||||
.takes_value(true),
|
.takes_value(true),
|
||||||
)
|
)
|
||||||
|
// network related arguments
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("listen_address")
|
Arg::with_name("listen_address")
|
||||||
.long("listen-address")
|
.long("listen-address")
|
||||||
@ -37,6 +39,14 @@ fn main() {
|
|||||||
.help("Network listen port for p2p connections.")
|
.help("Network listen port for p2p connections.")
|
||||||
.takes_value(true),
|
.takes_value(true),
|
||||||
)
|
)
|
||||||
|
.arg(
|
||||||
|
Arg::with_name("boot-nodes")
|
||||||
|
.long("boot-nodes")
|
||||||
|
.value_name("BOOTNODES")
|
||||||
|
.help("A list of comma separated multi addresses representing bootnodes to connect to.")
|
||||||
|
.takes_value(true),
|
||||||
|
)
|
||||||
|
// rpc related arguments
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("rpc")
|
Arg::with_name("rpc")
|
||||||
.long("rpc")
|
.long("rpc")
|
||||||
|
Loading…
Reference in New Issue
Block a user