Skip to content

Commit

Permalink
feat: remove kona_primitives references
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Sep 18, 2024
1 parent 6859af6 commit 718d915
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/net/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
///
Expand Down
3 changes: 2 additions & 1 deletion crates/rollup/src/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ type L1AttributesQueue<CP, BP, L2CP> = 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<CP, BP> =
DerivationPipeline<L1AttributesQueue<CP, BP, AlloyL2ChainProvider>, AlloyL2ChainProvider>;

Expand Down
2 changes: 1 addition & 1 deletion crates/ser/src/types/channel_out.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct ChannelOut<C: Compressor> {
/// 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,
Expand Down

0 comments on commit 718d915

Please sign in to comment.