diff --git a/Cargo.lock b/Cargo.lock index 5fa38cb..8f60ac9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4518,8 +4518,8 @@ dependencies = [ "alloy-primitives", "alloy-rpc-types", "jsonrpsee", + "reth-optimism-rpc", "reth-primitives", - "reth-revm", "reth-rpc-eth-api", "reth-storage-api", "serde", diff --git a/crates/wallet/Cargo.toml b/crates/wallet/Cargo.toml index c7c3d99..85637b4 100644 --- a/crates/wallet/Cargo.toml +++ b/crates/wallet/Cargo.toml @@ -17,7 +17,7 @@ alloy-rpc-types.workspace = true reth-primitives.workspace = true reth-storage-api.workspace = true reth-rpc-eth-api.workspace = true -reth-revm.workspace = true +reth-optimism-rpc.workspace = true jsonrpsee = { workspace = true, features = ["server", "macros"] } serde = { workspace = true, features = ["derive"] } diff --git a/crates/wallet/src/lib.rs b/crates/wallet/src/lib.rs index 47d431f..39e40a3 100644 --- a/crates/wallet/src/lib.rs +++ b/crates/wallet/src/lib.rs @@ -33,7 +33,7 @@ use serde::{Deserialize, Serialize}; use std::sync::Arc; use tracing::{trace, warn}; -use reth_revm as _; +use reth_optimism_rpc as _; use tokio::sync::Mutex; /// The capability to perform [EIP-7702][eip-7702] delegations, sponsored by the sequencer.