diff --git a/crates/op-revm/src/handler.rs b/crates/op-revm/src/handler.rs index f70421fc72..5e25ff738c 100644 --- a/crates/op-revm/src/handler.rs +++ b/crates/op-revm/src/handler.rs @@ -31,8 +31,6 @@ pub struct OpHandler { /// Mainnet handler allows us to use functions from the mainnet handler inside optimism handler. /// So we dont duplicate the logic pub mainnet: MainnetHandler, - /// Phantom data to avoid type inference issues. - pub _phantom: core::marker::PhantomData<(EVM, ERROR, FRAME)>, } impl OpHandler { @@ -40,7 +38,6 @@ impl OpHandler { pub fn new() -> Self { Self { mainnet: MainnetHandler::default(), - _phantom: core::marker::PhantomData, } } }