chore: remove reth-interfaces from static file (#8428)

This commit is contained in:
Matthias Seitz
2024-05-28 15:43:37 +02:00
committed by GitHub
parent c16fb4e49a
commit f6e1c7f76e
8 changed files with 13 additions and 12 deletions

View File

@ -55,7 +55,7 @@ impl<DB: Database + 'static> StaticFileHook<DB> {
match result {
Ok(_) => EngineHookEvent::Finished(Ok(())),
Err(err) => EngineHookEvent::Finished(Err(err.into())),
Err(err) => EngineHookEvent::Finished(Err(EngineHookError::Common(err.into()))),
}
}
Err(_) => {