mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
11 lines
258 B
Rust
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>,
|
|
}
|