@@ -195,7 +195,7 @@ where
195195impl < Pool , Client , EvmConfig , N , Txs > reth_basic_payload_builder:: PayloadBuilder
196196 for OpPayloadBuilderVanilla < Pool , Client , EvmConfig , N , Txs >
197197where
198- Pool : TransactionPool + Clone + Send + Sync ,
198+ Pool : Clone + Send + Sync ,
199199 Client : Clone + Send + Sync ,
200200 EvmConfig : Clone + Send + Sync ,
201201 N : NodePrimitives ,
@@ -224,13 +224,7 @@ where
224224
225225/// Optimism's payload builder
226226#[ derive( Debug , Clone ) ]
227- pub struct OpPayloadBuilderVanilla <
228- Pool : BuilderTransactionPool ,
229- Client ,
230- EvmConfig ,
231- N : NodePrimitives ,
232- Txs = ( ) ,
233- > {
227+ pub struct OpPayloadBuilderVanilla < Pool , Client , EvmConfig , N : NodePrimitives , Txs = ( ) > {
234228 /// The type responsible for creating the evm.
235229 pub evm_config : EvmConfig ,
236230 /// The builder's signer key to use for an end of block tx
@@ -254,7 +248,7 @@ pub struct OpPayloadBuilderVanilla<
254248 pub supervisor_safety_level : SafetyLevel ,
255249}
256250
257- impl < Pool : BuilderTransactionPool , Client , EvmConfig , N : NodePrimitives >
251+ impl < Pool , Client , EvmConfig , N : NodePrimitives >
258252 OpPayloadBuilderVanilla < Pool , Client , EvmConfig , N >
259253{
260254 /// `OpPayloadBuilder` constructor.
0 commit comments