\engine_getInclusionListV1 fix

This commit is contained in:
Eitan Seri-Levi
2026-04-30 15:40:00 +02:00
parent afdb61326e
commit 4e3a3c1d7e
3 changed files with 6 additions and 7 deletions

View File

@@ -2307,7 +2307,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
);
// Retrieve the inclusion list from the execution layer.
let inclusion_list = execution_layer
.get_inclusion_list(parent_hash.0)
.get_inclusion_list()
.await
.map_err(|e| Error::ExecutionLayerGetInclusionListFailed(Box::new(e)))?;