Skip to content

Commit

Permalink
chore: use OpPooledTransaction in OpNetworkPrimitives
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Dec 20, 2024
1 parent 37ef201 commit 2bd616e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/optimism/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ reth-optimism-primitives = { workspace = true, features = ["serde"] }
# revm with required optimism features
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }

# ethereum
# alloy
alloy-eips.workspace = true
alloy-primitives.workspace = true
op-alloy-rpc-types-engine.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-consensus.workspace = true
op-alloy-consensus.workspace = true

# misc
clap.workspace = true
Expand All @@ -78,7 +79,6 @@ reth-revm = { workspace = true, features = ["test-utils"] }
reth-tasks.workspace = true

alloy-primitives.workspace = true
op-alloy-consensus.workspace = true
alloy-signer-local.workspace = true
alloy-network.workspace = true
alloy-consensus.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/optimism/node/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,6 @@ impl NetworkPrimitives for OpNetworkPrimitives {
type BlockBody = reth_primitives::BlockBody;
type Block = reth_primitives::Block;
type BroadcastedTransaction = reth_primitives::TransactionSigned;
type PooledTransaction = reth_primitives::PooledTransaction;
type PooledTransaction = op_alloy_consensus::OpPooledTransaction;
type Receipt = reth_primitives::Receipt;
}

0 comments on commit 2bd616e

Please sign in to comment.