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:
Pawan Dhananjay
2021-06-04 00:10:59 +00:00
parent f6280aa663
commit 502402c6b9
2 changed files with 2 additions and 0 deletions

View File

@@ -257,6 +257,7 @@ fn eth1_endpoints_flag() {
"https://infura.io/secret"
);
assert_eq!(config.eth1.endpoints[1].to_string(), "https://infura.io/");
assert!(config.sync_eth1_chain);
});
}
#[test]