Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions cumulus/zombienet/zombienet-sdk/tests/zombie_ci/pov_recovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ async fn pov_recovery() -> Result<(), anyhow::Error> {
("charlie", 600u64),
("one", 800u64),
("two", 800u64),
// Re-enable once we upgraded from smoldot 0.11.0 and https://github.com/paritytech/polkadot-sdk/pull/1631 is merged
// ("three", 800u64),
("eve", 800u64),
] {
log::info!("Checking block production for {name} within {timeout_secs}s");
Expand All @@ -86,7 +84,7 @@ async fn pov_recovery() -> Result<(), anyhow::Error> {
wait_until_timeout_elapses: false,
};

for name in ["one", "two", "three", "eve", "charlie", "alice"] {
for name in ["one", "two", "eve", "charlie", "alice"] {
log::info!("Ensuring blocks are imported using PoV recovery by {name}");
let result = network
.get_node(name)?
Expand Down Expand Up @@ -142,8 +140,6 @@ async fn build_network_config() -> Result<NetworkConfig, anyhow::Error> {
// - RPC collator which does not produce blocks
// - two
// - RPC full node
// - three
// - light client
let config = NetworkConfigBuilder::new()
.with_relaychain(|r| {
let r = r
Expand Down Expand Up @@ -216,11 +212,6 @@ async fn build_network_config() -> Result<NetworkConfig, anyhow::Error> {
)
.into()]))
})
.with_collator(|c| {
c.with_name("three")
.validator(false)
.with_args(build_collator_args(vec!["--relay-chain-light-client".into()]))
})
})
.with_global_settings(|global_settings| match std::env::var("ZOMBIENET_SDK_BASE_DIR") {
Ok(val) => global_settings.with_base_dir(val),
Expand Down
Loading