From f4fec18f3dd4c585b4889b3eb3e8236513d486d8 Mon Sep 17 00:00:00 2001 From: Fraser Hutchison <190532+Fraser999@users.noreply.github.com> Date: Tue, 3 Feb 2026 20:42:38 +0000 Subject: [PATCH] remove incorrect doc comment --- crates/bundle/src/lib.rs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/crates/bundle/src/lib.rs b/crates/bundle/src/lib.rs index afc11f6..0500718 100644 --- a/crates/bundle/src/lib.rs +++ b/crates/bundle/src/lib.rs @@ -25,14 +25,7 @@ //! The [`SignetEthBundle`] type contains actions that must be performed on //! both chains. As such, its simulation must be performed on both chains. The //! primary transaction simulation via [`SignetEthBundleDriver`] is performed -//! locally using [`trevm`]. However, the [`SignedFill`] must be checked -//! against the host chain. This is done by calling the -//! [`SignetEthBundle::decode_and_validate_txs`] method. This MUST be -//! called BEFORE simulating. -//! -//! Builders running in an exex may choose to simulate using the local host -//! chain DB copy. This is not yet implemented in this library, but may be in -//! the future. +//! locally using [`trevm`]. #![warn( missing_copy_implementations, @@ -54,6 +47,3 @@ pub use send::{ BundleInspector, BundleRecoverError, RecoverError, RecoveredBundle, SignetEthBundle, SignetEthBundleDriver, SignetEthBundleError, SignetEthBundleInsp, TxRequirement, }; - -#[cfg(doc)] -use signet_types::SignedFill;