mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 05:44:44 +00:00
FMT
This commit is contained in:
@@ -149,7 +149,10 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
|
||||
}
|
||||
// The block failed verification.
|
||||
Err(other) => {
|
||||
warn!(reason = other.to_string(), "Execution payload envelope rejected");
|
||||
warn!(
|
||||
reason = other.to_string(),
|
||||
"Execution payload envelope rejected"
|
||||
);
|
||||
Err(other)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -137,7 +137,11 @@ pub async fn publish_execution_payload_envelope<T: BeaconChainTypes>(
|
||||
// GET beacon/execution_payload_envelope/{block_id}
|
||||
pub(crate) fn get_beacon_execution_payload_envelope<T: BeaconChainTypes>(
|
||||
eth_v1: EthV1Filter,
|
||||
block_id_or_err: impl Filter<Extract = (BlockId,), Error = Rejection> + Clone + Send + Sync + 'static,
|
||||
block_id_or_err: impl Filter<Extract = (BlockId,), Error = Rejection>
|
||||
+ Clone
|
||||
+ Send
|
||||
+ Sync
|
||||
+ 'static,
|
||||
task_spawner_filter: TaskSpawnerFilter<T>,
|
||||
chain_filter: ChainFilter<T>,
|
||||
) -> ResponseFilter {
|
||||
|
||||
Reference in New Issue
Block a user