chore: cargo fix, fmt and misc fixes

This commit is contained in:
sprites0
2025-07-02 16:06:32 +00:00
parent 8c7e667891
commit f605c56bdf
4 changed files with 8 additions and 8 deletions

View File

@ -133,13 +133,12 @@ where
requests_hash,
};
let read_precompile_calls = ctx.read_precompile_calls.clone().into();
Ok(Self::Block {
header,
body: HlBlockBody {
inner: BlockBody { transactions, ommers: Default::default(), withdrawals },
sidecars: None,
read_precompile_calls: Some(read_precompile_calls),
read_precompile_calls: Some(ctx.read_precompile_calls.clone().into()),
},
})
}