chore: clippy

This commit is contained in:
sprites0
2025-07-04 23:22:09 +00:00
parent dba4557140
commit c31b0c4b8a
3 changed files with 6 additions and 14 deletions

View File

@ -258,19 +258,13 @@ where
}
/// Builds [`HlEthApi`] for HL.
#[derive(Debug)]
#[derive(Debug, Default)]
#[non_exhaustive]
pub struct HlEthApiBuilder {
/// Whether the node is in HL node compliant mode.
pub(crate) hl_node_compliant: bool,
}
impl Default for HlEthApiBuilder {
fn default() -> Self {
Self { hl_node_compliant: false }
}
}
impl<N> EthApiBuilder<N> for HlEthApiBuilder
where
N: FullNodeComponents,