perf: remove unnecessary state clone (#4763)

This commit is contained in:
Roman Krasiuk
2023-09-25 16:48:48 +03:00
committed by GitHub
parent 1b17453261
commit 0f9def08c0
12 changed files with 15 additions and 15 deletions

View File

@ -623,7 +623,7 @@ mod tests {
}
impl StateRootProvider for StateProviderTest {
fn state_root(&self, _bundle_state: BundleStateWithReceipts) -> RethResult<H256> {
fn state_root(&self, _bundle_state: &BundleStateWithReceipts) -> RethResult<H256> {
todo!()
}
}