mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-02-14 18:33:10 +00:00
10 lines
188 B
Rust
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>>,
|
|
}
|