Rust 1.89 compiler lint fix (#7644)

Fix lints for Rust 1.89 beta compiler
This commit is contained in:
chonghe
2025-06-25 13:33:17 +08:00
committed by GitHub
parent 56b2d4b525
commit 8e3c5d1524
28 changed files with 86 additions and 70 deletions

View File

@@ -380,7 +380,7 @@ pub enum GetPayloadResponseType<E: EthSpec> {
}
impl<E: EthSpec> GetPayloadResponse<E> {
pub fn execution_payload_ref(&self) -> ExecutionPayloadRef<E> {
pub fn execution_payload_ref(&self) -> ExecutionPayloadRef<'_, E> {
self.to_ref().into()
}
}