earthbucks_lib 0.8.5

EarthBucks library for data structures and algorithms
Documentation
1
2
3
4
5
6
7
use crate::tx_out::TxOut;

#[derive(Debug, Clone, PartialEq, Default)]
pub struct TxOutBn {
    pub tx_out: TxOut,
    pub block_num: u32,
}