Skip to content
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion substrate/client/consensus/manual-seal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,10 @@ mod tests {
assert_eq!(client.header(created_block.hash).unwrap().unwrap().number, 1)
}

#[tokio::test]
// TODO: enable once the flakiness is fixed
// See https://github.com/paritytech/polkadot-sdk/issues/3603
//#[tokio::test]
#[allow(unused)]
async fn instant_seal_delayed_finalize() {
let builder = TestClientBuilder::new();
let (client, select_chain) = builder.build_with_longest_chain();
Expand Down