Files
brk/crates/brk_computer/src/cointime/supply/vecs.rs
2026-03-09 11:16:50 +01:00

11 lines
258 B
Rust

use brk_traversable::Traversable;
use vecdb::{Rw, StorageMode};
use crate::internal::AmountFromHeight;
#[derive(Traversable)]
pub struct Vecs<M: StorageMode = Rw> {
pub vaulted_supply: AmountFromHeight<M>,
pub active_supply: AmountFromHeight<M>,
}