chore(storage, provider): rename bundle state with receipts (#9160)

This commit is contained in:
Alexey Shekhirin
2024-06-28 09:02:25 +01:00
committed by GitHub
parent 3fd5df3d00
commit ce8bcd8f1c
2 changed files with 3 additions and 4 deletions

View File

@ -1,13 +1,12 @@
//! Bundle state module. //! Bundle state module.
//! This module contains all the logic related to bundle state. //! This module contains all the logic related to bundle state.
mod bundle_state_with_receipts;
mod execution_outcome;
mod hashed_state_changes; mod hashed_state_changes;
mod state_changes; mod state_changes;
mod state_reverts; mod state_reverts;
pub use bundle_state_with_receipts::{ pub use execution_outcome::{AccountRevertInit, BundleStateInit, OriginalValuesKnown, RevertsInit};
AccountRevertInit, BundleStateInit, OriginalValuesKnown, RevertsInit,
};
pub use hashed_state_changes::HashedStateChanges; pub use hashed_state_changes::HashedStateChanges;
pub use state_changes::StateChanges; pub use state_changes::StateChanges;
pub use state_reverts::{StateReverts, StorageRevertsIter}; pub use state_reverts::{StateReverts, StorageRevertsIter};