Enable Gloas fork choice compliance

This commit is contained in:
dapplion
2026-06-09 13:17:11 +02:00
parent d3416ccc8a
commit cf53309224
5 changed files with 4 additions and 32 deletions

View File

@@ -1303,7 +1303,7 @@ impl ProtoArray {
/// This is similar to `find_head_walk`, except it walks every viable branch instead of taking
/// the maximum child at each step.
#[allow(clippy::too_many_arguments)]
pub(crate) fn filtered_block_tree_leaves_and_weights<E: EthSpec>(
pub fn filtered_block_tree_leaves_and_weights<E: EthSpec>(
&self,
justified_root: &Hash256,
current_slot: Slot,

View File

@@ -1119,33 +1119,6 @@ impl ProtoArrayForkChoice {
.map(|node| node.weight())
}
/// Returns the leaves of the filtered block tree (rooted at `justified_root`) along with
/// their weights — i.e. roots that are viable for head and have no descendant that is also
/// viable for head. Mirrors the spec's `viable_for_head_roots_and_weights` check.
#[allow(clippy::too_many_arguments)]
pub fn filtered_block_tree_leaves_and_weights<E: EthSpec>(
&self,
justified_root: &Hash256,
current_slot: Slot,
justified_checkpoint: Checkpoint,
finalized_checkpoint: Checkpoint,
proposer_boost_root: Hash256,
justified_balances: &JustifiedBalances,
spec: &ChainSpec,
) -> Result<Vec<(Hash256, PayloadStatus, u64)>, String> {
self.proto_array
.filtered_block_tree_leaves_and_weights::<E>(
justified_root,
current_slot,
justified_checkpoint,
finalized_checkpoint,
proposer_boost_root,
justified_balances,
spec,
)
.map_err(|e| format!("filtered_block_tree_leaves_and_weights failed: {e:?}"))
}
/// Returns the payload status of the head node based on accumulated weights and tiebreaker.
///
/// See `ProtoArray` documentation.

View File

@@ -88,8 +88,6 @@ excluded_paths = [
"tests/.*/.*/fast_confirmation",
# TODO: fork choice compliance invalid_message tests not implemented yet
"tests/minimal/.*/fork_choice_compliance/invalid_message_test/.*",
# TODO: fork choice compliance tests are implemented for Fulu only.
"tests/minimal/gloas/fork_choice_compliance/.*",
]

View File

@@ -1424,6 +1424,7 @@ impl<E: EthSpec> Tester<E> {
let justified_balances = fork_choice.fc_store().justified_balances().clone();
let actual = fork_choice
.proto_array()
.core_proto_array()
.filtered_block_tree_leaves_and_weights::<E>(
&justified.root,
current_slot,
@@ -1435,7 +1436,7 @@ impl<E: EthSpec> Tester<E> {
)
.map_err(|e| {
Error::InternalError(format!(
"filtered_block_tree_leaves_and_weights failed: {e}"
"filtered_block_tree_leaves_and_weights failed: {e:?}"
))
})?;
drop(fork_choice);

View File

@@ -779,7 +779,7 @@ impl<E: EthSpec + TypeName> Handler for ForkChoiceComplianceHandler<E> {
}
fn is_enabled_for_fork(&self, fork_name: ForkName) -> bool {
cfg!(feature = "fake_crypto") && fork_name == ForkName::Fulu
cfg!(feature = "fake_crypto") && fork_name.fulu_enabled()
}
fn disabled_forks(&self) -> Vec<ForkName> {