We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74cf10 commit e114345Copy full SHA for e114345
stackslib/src/net/tests/download/epoch2x.rs
@@ -101,8 +101,10 @@ fn test_get_block_availability() {
101
102
TestPeer::set_ops_burn_header_hash(&mut burn_ops, &burn_header_hash);
103
104
- peer_1.next_burnchain_block_raw(burn_ops);
105
-
+ // We do not have the anchor block for peer 1, therefore it cannot advance its tip.
+ if i < 6 {
106
+ peer_1.next_burnchain_block_raw(burn_ops);
107
+ }
108
let sn =
109
SortitionDB::get_canonical_burn_chain_tip(peer_2.sortdb.as_ref().unwrap().conn())
110
.unwrap();
0 commit comments