mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 07:09:59 -07:00
10 lines
216 B
Rust
10 lines
216 B
Rust
use brk_types::{BlockHash, Height};
|
|
|
|
pub enum BlockRange {
|
|
Span { start: Height, end: Height },
|
|
Start { start: Height },
|
|
End { end: Height },
|
|
Last { n: u32 },
|
|
After { hash: Option<BlockHash> },
|
|
}
|