Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions crates/bundle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -54,6 +47,3 @@ pub use send::{
BundleInspector, BundleRecoverError, RecoverError, RecoveredBundle, SignetEthBundle,
SignetEthBundleDriver, SignetEthBundleError, SignetEthBundleInsp, TxRequirement,
};

#[cfg(doc)]
use signet_types::SignedFill;