mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-29 11:48:12 -07:00
10 lines
263 B
Rust
10 lines
263 B
Rust
use brk_traversable::Traversable;
|
|
|
|
use crate::internal::ComputedValueVecsFromHeight;
|
|
|
|
#[derive(Clone, Traversable)]
|
|
pub struct Vecs {
|
|
pub indexes_to_vaulted_supply: ComputedValueVecsFromHeight,
|
|
pub indexes_to_active_supply: ComputedValueVecsFromHeight,
|
|
}
|