10 lines
181 B
Rust
Raw Normal View History

2026-01-15 15:44:48 +02:00
use std::sync::Arc;
use tokio::sync::RwLock;
2026-01-13 15:11:51 +02:00
#[derive(Debug)]
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
}