Skip to content

Commit 4515ee1

Browse files
committed
Removed extra param from PoPayloadBUilderVanilla
1 parent eb6e7e6 commit 4515ee1

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

crates/op-rbuilder/src/payload_builder_vanilla.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)