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

@@ -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);