lssa/indexer_core/src/state.rs
2026-01-23 10:39:34 +02:00

10 lines
188 B
Rust

use std::sync::Arc;
use tokio::sync::RwLock;
#[derive(Debug, Clone)]
pub struct IndexerState {
// Only one field for now, for testing.
pub latest_seen_block: Arc<RwLock<u64>>,
}