bitcoin-parser 0.1.0

Bitcoin block header parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! An implementation of the parser of the bitcoin block header.

#![warn(unused_extern_crates)]
#![no_std]

extern crate byteorder;
extern crate sha2;
#[macro_use]
extern crate arrayref;

pub mod hash;
pub mod header;