pub trait DatabaseRef: DatabaseRef<Error = DatabaseError> + Debug { }
Expand description
Helper trait that combines DatabaseRef with Debug. This is needed because alloy-evm requires Debug on Database implementations. Specific implementation for dyn Db since trait object upcasting is not stable.