Advertise --advertise-false-custody-group-count for testing PeerDAS (#7593)

#6973
This commit is contained in:
Jimmy Chen
2025-06-16 12:10:28 +01:00
committed by GitHub
parent 6135f417a2
commit 3d2d65bf8d
9 changed files with 67 additions and 40 deletions

View File

@@ -2679,6 +2679,16 @@ fn invalid_gossip_verified_blocks_path() {
});
}
#[test]
fn advertise_false_custody_group_count() {
CommandLineTest::new()
.flag("advertise-false-custody-group-count", Some("64"))
.run_with_zero_port()
.with_config(|config| {
assert_eq!(config.network.advertise_false_custody_group_count, Some(64))
});
}
#[test]
fn beacon_processor() {
CommandLineTest::new()