Struct bitcoin_explorer::parser::proto::simple_proto::SBlock [−][src]
pub struct SBlock {
pub header: SBlockHeader,
pub txdata: Vec<STransaction>,
}Expand description
Block in a simple format.
A SBlock compared to a Block has the following more
attributes precomputed:
block hashtransaction idoutput addressesoutput script types
But is has the following attributes removed:
nounceprevious block hashmerkle rootbitsinput witnessoutput public script key hash
SBlock reduces the amount of data memorized or transferred.
Fields
header: SBlockHeadertxdata: Vec<STransaction>Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more