chore: clippy

This commit is contained in:
sprites0
2025-06-24 02:04:14 +00:00
parent 225f9b0948
commit 2152e2406d
5 changed files with 11 additions and 14 deletions

View File

@ -69,7 +69,7 @@ fn run_precompile(
return Err(PrecompileError::OutOfGas);
};
return match *get {
match *get {
ReadPrecompileResult::Ok {
gas_used,
ref bytes,
@ -87,7 +87,7 @@ fn run_precompile(
Err(PrecompileError::OutOfGas)
}
ReadPrecompileResult::UnexpectedError => panic!("unexpected precompile error"),
};
}
}
impl<'a, DB, EVM, Spec, R: ReceiptBuilder> HlBlockExecutor<'a, EVM, Spec, R>