lssa/indexer_core/src/state.rs

10 lines
188 B
Rust
Raw Normal View History

2026-01-15 15:44:48 +02:00
use std::sync::Arc;
use tokio::sync::RwLock;
2026-01-19 13:55:31 +02:00
#[derive(Debug, Clone)]
2026-01-13 15:11:51 +02:00
pub struct IndexerState {
// Only one field for now, for testing.
2026-01-15 15:44:48 +02:00
pub latest_seen_block: Arc<RwLock<u64>>,
2026-01-13 15:11:51 +02:00
}