chore: Add reth rustfmt

This commit is contained in:
sprites0
2025-06-24 02:27:40 +00:00
parent d9e7302e76
commit 0c8229370f
28 changed files with 221 additions and 573 deletions

View File

@ -117,12 +117,7 @@ where
}
fn finish(self) -> (Self::DB, EvmEnv<Self::Spec>) {
let Context {
block: block_env,
cfg: cfg_env,
journaled_state,
..
} = self.inner.0.ctx;
let Context { block: block_env, cfg: cfg_env, journaled_state, .. } = self.inner.0.ctx;
(journaled_state.database, EvmEnv { block_env, cfg_env })
}