Trait fuel_core::state::TransactableStorage
source · pub trait TransactableStorage<Height>: IterableStore + Debug + Send + Sync {
// Required method
fn commit_changes(
&self,
height: Option<Height>,
changes: Changes,
) -> StorageResult<()>;
}
Required Methods§
sourcefn commit_changes(
&self,
height: Option<Height>,
changes: Changes,
) -> StorageResult<()>
fn commit_changes( &self, height: Option<Height>, changes: Changes, ) -> StorageResult<()>
Commits the changes into the storage.