From 81102d59436526eb7264f5af4215de04951882ef Mon Sep 17 00:00:00 2001 From: Eitan Seri-Levi Date: Thu, 30 Apr 2026 15:33:58 +0200 Subject: [PATCH] should_extend_payload uuse it --- consensus/proto_array/src/proto_array.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/consensus/proto_array/src/proto_array.rs b/consensus/proto_array/src/proto_array.rs index e6e302b2fa..b19b2071a2 100644 --- a/consensus/proto_array/src/proto_array.rs +++ b/consensus/proto_array/src/proto_array.rs @@ -1627,15 +1627,6 @@ impl ProtoArray { return false; } - if self.payload_inclusion_list_satisfaction.get(&node.root()) == Some(&false) { - info!( - ?current_slot, - source = "node_is_viable_for_head", - "this block doesn't satisfy the inclusion list" - ); - return false; - } - let genesis_epoch = Epoch::new(0); let current_epoch = current_slot.epoch(E::slots_per_epoch()); let node_epoch = node.slot().epoch(E::slots_per_epoch());