off_blockway 0.0.3

Custom library for the OffBlockway project. I wouldn't use this if I were you :(
Documentation
extern crate off_blockway;


use off_blockway::block::*;
use off_blockway::hash_util::*;


// Integration tests for the blockchain
#[test]
fn it_works()
{
    let block = Block::new( 0, empty_hash() );
    assert!( true );
}