fix: add const to stub check_consistency fn

This commit is contained in:
yongkangc
2025-12-18 09:36:57 +00:00
parent 2a77d5f6de
commit 3c776bbbc8

View File

@@ -81,7 +81,7 @@ impl RocksDBProvider {
/// Check consistency of `RocksDB` tables (stub implementation).
///
/// Returns `None` since there is no `RocksDB` data to check when the feature is disabled.
pub fn check_consistency<Provider>(
pub const fn check_consistency<Provider>(
&self,
_provider: &Provider,
) -> ProviderResult<Option<alloy_primitives::BlockNumber>> {