mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-31 21:27:12 +00:00
chore: cargo fmt + fix clippy warnings
This commit is contained in:
@@ -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![];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user