Skip to content

Commit 8f0b25e

Browse files
committed
Fix
1 parent 6817c85 commit 8f0b25e

File tree

1 file changed

+4
-4
lines changed
  • beacon_node/beacon_processor/src

1 file changed

+4
-4
lines changed

beacon_node/beacon_processor/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,10 +1085,10 @@ impl<E: EthSpec> BeaconProcessor<E> {
10851085
// prioritize them over syncing requests from other peers (BlocksByRange
10861086
// and BlocksByRoot)
10871087
.or_else(|| work_queues.status_queue.pop_if(can_spawn_predicate))
1088-
.or_else(|| work_queues.bbrange_queue.pop_if(can_spawn_predicate))
1089-
.or_else(|| work_queues.bbroots_queue.pop_if(can_spawn_predicate))
1090-
.or_else(|| work_queues.blbrange_queue.pop_if(can_spawn_predicate))
1091-
.or_else(|| work_queues.blbroots_queue.pop_if(can_spawn_predicate))
1088+
.or_else(|| work_queues.block_brange_queue.pop_if(can_spawn_predicate))
1089+
.or_else(|| work_queues.block_broots_queue.pop_if(can_spawn_predicate))
1090+
.or_else(|| work_queues.blob_brange_queue.pop_if(can_spawn_predicate))
1091+
.or_else(|| work_queues.blob_broots_queue.pop_if(can_spawn_predicate))
10921092
.or_else(|| work_queues.dcbroots_queue.pop_if(can_spawn_predicate))
10931093
.or_else(|| work_queues.dcbrange_queue.pop_if(can_spawn_predicate))
10941094
// Check slashings after all other consensus messages so we prioritize

0 commit comments

Comments
 (0)