Skip to content

Commit

Permalink
Remove crate visibility to cache
Browse files Browse the repository at this point in the history
  • Loading branch information
raefko committed Oct 16, 2023
1 parent 085abc2 commit 6ee8eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/cached_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub const UNINITIALIZED_CLASS_HASH: &ClassHash = b"\x00\x00\x00\x00\x00\x00\x00\
pub struct CachedState<T: StateReader> {
pub state_reader: Arc<T>,
#[getset(set = "pub", get = "pub", get_mut = "pub")]
pub(crate) cache: StateCache,
pub cache: StateCache,
#[get = "pub"]
pub(crate) contract_classes: Option<ContractClassCache>,
#[get = "pub"]
Expand Down

0 comments on commit 6ee8eef

Please sign in to comment.