chore: cargo fmt + fix clippy warnings

This commit is contained in:
Devnet Bot
2026-05-06 16:08:52 +00:00
parent 39b6f58bc2
commit 2356bdd256
8 changed files with 58 additions and 56 deletions

View File

@@ -2006,9 +2006,16 @@ impl<E: EthSpec> ExecutionLayer<E> {
}
}
pub async fn get_inclusion_list(&self, parent_hash: ExecutionBlockHash) -> Result<Transactions<E>, Error> {
pub async fn get_inclusion_list(
&self,
parent_hash: ExecutionBlockHash,
) -> Result<Transactions<E>, Error> {
debug!("Requesting inclusion list from EL");
let raw_transactions = self.engine().api.get_inclusion_list::<E>(parent_hash).await?;
let raw_transactions = self
.engine()
.api
.get_inclusion_list::<E>(parent_hash)
.await?;
let mut transactions = vec![];