diff --git a/crates/net/src/builder.rs b/crates/net/src/builder.rs index 553c96c..f36d9e2 100644 --- a/crates/net/src/builder.rs +++ b/crates/net/src/builder.rs @@ -151,8 +151,8 @@ impl NetworkDriverBuilder { /// ## Example /// /// ```rust + /// use alloy::primitives::{address, Address}; /// use discv5::{ConfigBuilder, ListenConfig}; - /// use kona_primitives::alloy_primitives::{address, Address}; /// use op_net::builder::NetworkDriverBuilder; /// use std::net::{IpAddr, Ipv4Addr, SocketAddr}; /// diff --git a/crates/rollup/src/pipeline.rs b/crates/rollup/src/pipeline.rs index 7a50871..83bdcab 100644 --- a/crates/rollup/src/pipeline.rs +++ b/crates/rollup/src/pipeline.rs @@ -29,7 +29,8 @@ type L1AttributesQueue = AttributesQueue< /// - The L1 [BlobProvider] (BP) /// /// This pipeline is a derivation pipeline that takes the outputs of the [FrameQueue] stage -/// and transforms them into [L2PayloadAttributes](kona_primitives::L2PayloadAttributes). +/// and transforms them into +/// [OptimismPayloadAttributes](alloy::rpc::types::engine::OptimismPayloadAttributes). pub type RollupPipeline = DerivationPipeline, AlloyL2ChainProvider>; diff --git a/crates/ser/src/types/channel_out.rs b/crates/ser/src/types/channel_out.rs index 63435cc..98c1133 100644 --- a/crates/ser/src/types/channel_out.rs +++ b/crates/ser/src/types/channel_out.rs @@ -28,7 +28,7 @@ pub struct ChannelOut { /// The current frame number. pub frame: u16, /// The uncompressed size of the channel. - /// This must be less than [kona_primitives::MAX_RLP_BYTES_PER_CHANNEL]. + /// This must be less than [op_alloy_protocol::MAX_RLP_BYTES_PER_CHANNEL]. pub rlp_length: u64, /// If the channel is closed. pub closed: bool,