miden_node_store/
lib.rs

1mod blocks;
2pub mod config;
3pub mod db;
4pub mod errors;
5pub mod genesis;
6mod nullifier_tree;
7pub mod server;
8pub mod state;
9
10// CONSTANTS
11// =================================================================================================
12pub const COMPONENT: &str = "miden-store";
13
14/// Number of sql statements that each connection will cache.
15const SQL_STATEMENT_CACHE_CAPACITY: usize = 32;