add implementation for StateRootProvider for StateProviderTest (#5060)

This commit is contained in:
Thomas Coratger
2023-10-19 09:11:36 +02:00
committed by GitHub
parent 7ca3db8a66
commit 38e0d5ae61
2 changed files with 2 additions and 1 deletions

View File

@@ -22,3 +22,4 @@ revm.workspace = true
# common
tracing.workspace = true

View File

@@ -616,7 +616,7 @@ mod tests {
impl StateRootProvider for StateProviderTest {
fn state_root(&self, _bundle_state: &BundleStateWithReceipts) -> RethResult<B256> {
todo!()
unimplemented!("state root computation is not supported")
}
}