Skip to content

Commit

Permalink
refactor: postflight in lifecycle
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Jul 22, 2024
1 parent 2749026 commit 2cb3e88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,10 @@ mod fill;
pub use fill::{Block, Cfg, Tx};

mod lifecycle;
pub use lifecycle::{BlockOutput, CancunLifecycle, Lifecycle, PragueLifecycle, ShanghaiLifecycle};

mod postflight;
pub use postflight::{PostTx, PostflightResult};
pub use lifecycle::{
BlockOutput, CancunLifecycle, Lifecycle, PostTx, PostflightResult, PragueLifecycle,
ShanghaiLifecycle,
};

mod states;
pub(crate) use states::sealed::*;
Expand Down
3 changes: 3 additions & 0 deletions src/lifecycle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ pub use cycles::{CancunLifecycle, PragueLifecycle, ShanghaiLifecycle};
mod output;
pub use output::BlockOutput;

mod postflight;
pub use postflight::{PostTx, PostflightResult};

mod r#trait;
pub use r#trait::Lifecycle;
File renamed without changes.

0 comments on commit 2cb3e88

Please sign in to comment.