Fix options for --eth1-endpoints
flag (#2392)
## Issue Addressed N/A ## Proposed Changes Set `config.sync_eth1_chain` to true when using just the `--eth1-endpoints` flag (without `--eth1`).
This commit is contained in:
parent
f6280aa663
commit
502402c6b9
@ -190,6 +190,7 @@ pub fn get_config<E: EthSpec>(
|
|||||||
client_config.eth1.endpoints = vec![SensitiveUrl::parse(endpoint)
|
client_config.eth1.endpoints = vec![SensitiveUrl::parse(endpoint)
|
||||||
.map_err(|e| format!("eth1-endpoint was an invalid URL: {:?}", e))?];
|
.map_err(|e| format!("eth1-endpoint was an invalid URL: {:?}", e))?];
|
||||||
} else if let Some(endpoints) = cli_args.value_of("eth1-endpoints") {
|
} else if let Some(endpoints) = cli_args.value_of("eth1-endpoints") {
|
||||||
|
client_config.sync_eth1_chain = true;
|
||||||
client_config.eth1.endpoints = endpoints
|
client_config.eth1.endpoints = endpoints
|
||||||
.split(',')
|
.split(',')
|
||||||
.map(|s| SensitiveUrl::parse(s))
|
.map(|s| SensitiveUrl::parse(s))
|
||||||
|
@ -257,6 +257,7 @@ fn eth1_endpoints_flag() {
|
|||||||
"https://infura.io/secret"
|
"https://infura.io/secret"
|
||||||
);
|
);
|
||||||
assert_eq!(config.eth1.endpoints[1].to_string(), "https://infura.io/");
|
assert_eq!(config.eth1.endpoints[1].to_string(), "https://infura.io/");
|
||||||
|
assert!(config.sync_eth1_chain);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user