neo_solidity/runtime/
storage.rs

1//! Storage Management Module
2//!
3//! Provides persistent storage for smart contracts with Neo blockchain compatibility.
4
5use super::{RuntimeConfig, RuntimeError};
6use serde::{Deserialize, Serialize};
7use std::collections::{BTreeMap, HashMap};
8
9include!("storage/storage_types.rs");
10include!("storage/storage_impl.rs");
11
12#[cfg(test)]
13mod tests;