refactor: Add more low-level methods to Executor (#14440)

This commit is contained in:
Arsenii Kulikov
2025-02-12 15:15:01 +04:00
committed by GitHub
parent 9a805b06db
commit 48bffd418f
9 changed files with 292 additions and 192 deletions

View File

@ -165,6 +165,10 @@ where
fn state_mut(&mut self) -> &mut State<DB> {
&mut self.state
}
fn into_state(self) -> reth::revm::db::State<Self::DB> {
self.state
}
}
sol!(