niebla-158 0.1.1

Compact block filters (BIP158) + light client plumbing (BIP157) for Bitcoin wallets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use bitcoin::BlockHash;

/// Return known rolling cfheader checkpoints for a network.
/// For now we return an empty list (no external trust). If you have
/// a vetted list, populate it here (height, rolling_header_hash).
#[allow(dead_code)]
pub fn mainnet_checkpoints() -> Vec<(u32, BlockHash)> {
    vec![]
}
#[allow(dead_code)]
pub fn testnet_checkpoints() -> Vec<(u32, BlockHash)> {
    vec![]
}
#[allow(dead_code)]
pub fn signet_checkpoints() -> Vec<(u32, BlockHash)> {
    vec![]
}