fix: remove Send + Sync bounds from Provider associated type

This commit is contained in:
yongkangc
2025-12-22 10:21:06 +00:00
parent a6a7b6021c
commit 51cd4d1523

View File

@@ -1182,7 +1182,7 @@ pub trait EngineValidator<
>: Send + Sync + 'static
{
/// The provider type used for state lookups.
type Provider: Send + Sync;
type Provider;
/// Validates the payload attributes with respect to the header.
///