chore: fix (#14456)

This commit is contained in:
Bilog WEB3
2025-02-13 01:27:48 +01:00
committed by GitHub
parent c6b757ed93
commit 7e1896c41c
3 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ impl<T: PayloadTypes> Stream for BuiltPayloadStream<T> {
continue continue
} }
Some(Err(err)) => { Some(Err(err)) => {
debug!(%err, "payload event stream stream lagging behind"); debug!(%err, "payload event stream lagging behind");
continue continue
} }
None => Poll::Ready(None), None => Poll::Ready(None),

View File

@ -27,7 +27,7 @@ pub trait BuiltPayload: Send + Sync + fmt::Debug {
None None
} }
/// Returns the EIP-7865 requests for the payload if any. /// Returns the EIP-7685 requests for the payload if any.
fn requests(&self) -> Option<Requests>; fn requests(&self) -> Option<Requests>;
} }

View File

@ -48,7 +48,7 @@ impl<ChainSpec: EthereumHardforks> ExecutionPayloadValidator<ChainSpec> {
self.chain_spec().is_shanghai_active_at_timestamp(timestamp) self.chain_spec().is_shanghai_active_at_timestamp(timestamp)
} }
/// Returns true if the Prague harkdfork is active at the given timestamp. /// Returns true if the Prague hardfork is active at the given timestamp.
#[inline] #[inline]
fn is_prague_active_at_timestamp(&self, timestamp: u64) -> bool { fn is_prague_active_at_timestamp(&self, timestamp: u64) -> bool {
self.chain_spec().is_prague_active_at_timestamp(timestamp) self.chain_spec().is_prague_active_at_timestamp(timestamp)