lssa/node_core/src/lib.rs

16 lines
333 B
Rust
Raw Normal View History

2024-12-03 09:32:35 +02:00
use accounts::account_core::AccountAddress;
use config::NodeConfig;
use storage::NodeChainStore;
pub mod config;
2024-12-02 00:55:52 +01:00
pub mod executions;
2024-12-03 09:32:35 +02:00
pub mod sequencer_client;
pub mod storage;
pub struct NodeCore {
pub storage: NodeChainStore,
pub curr_height: u64,
pub main_acc_addr: AccountAddress,
pub node_config: NodeConfig,
}