mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-20 07:28:11 -07:00
13 lines
396 B
Rust
13 lines
396 B
Rust
use brk_traversable::Traversable;
|
|
use brk_types::{BasisPointsSigned32, StoredF64};
|
|
use vecdb::{Rw, StorageMode};
|
|
|
|
use crate::internal::{PerBlock, PercentPerBlock};
|
|
|
|
#[derive(Traversable)]
|
|
pub struct Vecs<M: StorageMode = Rw> {
|
|
pub inflation_rate: PercentPerBlock<BasisPointsSigned32, M>,
|
|
pub tx_velocity_native: PerBlock<StoredF64, M>,
|
|
pub tx_velocity_fiat: PerBlock<StoredF64, M>,
|
|
}
|