Skip to main content

neo_devpack_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
9mod state_impl;
10mod state_types;
11
12pub use state_types::*;
13
14#[cfg(test)]
15mod tests;