mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 04:37:13 +00:00
Fmt
This commit is contained in:
@@ -756,9 +756,7 @@ impl HttpJsonRpc {
|
||||
|
||||
pub async fn update_payload_with_inclusion_list<E: EthSpec>(&self) {}
|
||||
|
||||
pub async fn get_inclusion_list<E: EthSpec>(
|
||||
&self,
|
||||
) -> Result<Option<Vec<String>>, Error> {
|
||||
pub async fn get_inclusion_list<E: EthSpec>(&self) -> Result<Option<Vec<String>>, Error> {
|
||||
let params = json!([]);
|
||||
|
||||
self.rpc_request(
|
||||
|
||||
@@ -2008,11 +2008,7 @@ impl<E: EthSpec> ExecutionLayer<E> {
|
||||
|
||||
pub async fn get_inclusion_list(&self) -> Result<Transactions<E>, Error> {
|
||||
debug!("Requesting inclusion list from EL");
|
||||
let raw_transactions = self
|
||||
.engine()
|
||||
.api
|
||||
.get_inclusion_list::<E>()
|
||||
.await?;
|
||||
let raw_transactions = self.engine().api.get_inclusion_list::<E>().await?;
|
||||
|
||||
let mut transactions = vec![];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user