Merge branch 'unstable' of https://github.com/sigp/lighthouse into electra_attestation_changes

This commit is contained in:
realbigsean
2024-05-31 08:49:04 -04:00
160 changed files with 4660 additions and 3400 deletions

View File

@@ -117,9 +117,9 @@ pub fn run<E: EthSpec>(
let beacon_url: Option<SensitiveUrl> = parse_optional(matches, "beacon-url")?;
let runs: usize = parse_required(matches, "runs")?;
let config = Config {
no_signature_verification: matches.is_present("no-signature-verification"),
exclude_cache_builds: matches.is_present("exclude-cache-builds"),
exclude_post_block_thc: matches.is_present("exclude-post-block-thc"),
no_signature_verification: matches.get_flag("no-signature-verification"),
exclude_cache_builds: matches.get_flag("exclude-cache-builds"),
exclude_post_block_thc: matches.get_flag("exclude-post-block-thc"),
};
info!("Using {} spec", E::spec_name());