feat: payload future also sync (#5073)

This commit is contained in:
Luca Provini
2023-10-18 17:06:44 +02:00
committed by GitHub
parent d1f43cf015
commit c947d85f44

View File

@ -314,7 +314,7 @@ where
}
type PayloadFuture =
Pin<Box<dyn Future<Output = Result<Arc<BuiltPayload>, PayloadBuilderError>> + Send>>;
Pin<Box<dyn Future<Output = Result<Arc<BuiltPayload>, PayloadBuilderError>> + Send + Sync>>;
/// Message type for the [PayloadBuilderService].
enum PayloadServiceCommand {