mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-02-15 19:03:09 +00:00
6 lines
121 B
Rust
6 lines
121 B
Rust
|
|
#[derive(Debug)]
|
||
|
|
pub struct IndexerState {
|
||
|
|
// Only one field for now, for testing.
|
||
|
|
pub latest_seen_block: u64,
|
||
|
|
}
|