From ce8bcd8f1cc8f88ebaa69f15aab240c9334b777f Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Fri, 28 Jun 2024 09:02:25 +0100 Subject: [PATCH] chore(storage, provider): rename bundle state with receipts (#9160) --- ...{bundle_state_with_receipts.rs => execution_outcome.rs} | 0 crates/storage/provider/src/bundle_state/mod.rs | 7 +++---- 2 files changed, 3 insertions(+), 4 deletions(-) rename crates/storage/provider/src/bundle_state/{bundle_state_with_receipts.rs => execution_outcome.rs} (100%) diff --git a/crates/storage/provider/src/bundle_state/bundle_state_with_receipts.rs b/crates/storage/provider/src/bundle_state/execution_outcome.rs similarity index 100% rename from crates/storage/provider/src/bundle_state/bundle_state_with_receipts.rs rename to crates/storage/provider/src/bundle_state/execution_outcome.rs diff --git a/crates/storage/provider/src/bundle_state/mod.rs b/crates/storage/provider/src/bundle_state/mod.rs index d1a9e9b2a..eaf3dab43 100644 --- a/crates/storage/provider/src/bundle_state/mod.rs +++ b/crates/storage/provider/src/bundle_state/mod.rs @@ -1,13 +1,12 @@ //! Bundle state module. //! This module contains all the logic related to bundle state. -mod bundle_state_with_receipts; + +mod execution_outcome; mod hashed_state_changes; mod state_changes; mod state_reverts; -pub use bundle_state_with_receipts::{ - AccountRevertInit, BundleStateInit, OriginalValuesKnown, RevertsInit, -}; +pub use execution_outcome::{AccountRevertInit, BundleStateInit, OriginalValuesKnown, RevertsInit}; pub use hashed_state_changes::HashedStateChanges; pub use state_changes::StateChanges; pub use state_reverts::{StateReverts, StorageRevertsIter};