neo_solidity/runtime/
state.rs

1//! State Management Module
2//!
3//! Manages account states, balances, and transaction state for Neo runtime.
4
5use super::{RuntimeConfig, RuntimeError, StateChange, StateChangeType};
6use serde::{Deserialize, Serialize};
7use std::collections::HashMap;
8
9include!("state/state_types.rs");
10include!("state/state_impl.rs");
11
12#[cfg(test)]
13mod tests;