brk_computer 0.11.2

A Bitcoin dataset computer built on top of brk_indexer
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod base;

pub use base::*;

fn period_suffix(period: &str) -> String {
    if period.is_empty() {
        String::new()
    } else {
        format!("_{period}")
    }
}