You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Now back all candidates. Back them in a random order. The result should always be the same.
letmut candidates_shuffled = candidates.clone();
candidates_shuffled.shuffle(&mutthread_rng());
for candidate in candidates.iter(){
chain.candidate_backed(candidate);
storage.mark_backed(candidate);
}
It is observed that in the given snippet of code used in the test of fragment chains functionality a shuffled list of candidates is created but is never actually used below in the test.
polkadot-sdk/polkadot/node/core/prospective-parachains/src/fragment_chain/tests.rs
Lines 1433 to 1439 in 986e7ae
It is observed that in the given snippet of code used in the test of fragment chains functionality a shuffled list of candidates is created but is never actually used below in the test.
Please check if this test works properly (cc @alindima @iceseer)
The text was updated successfully, but these errors were encountered: