Fixes for serializing entries over blobs and reorg into ledger

This commit is contained in:
Stephen Akridge
2018-05-10 13:01:42 -07:00
parent c9cd81319a
commit a80991f2b3
11 changed files with 143 additions and 116 deletions

View File

@@ -1,7 +1,7 @@
//! The `hash` module provides functions for creating SHA-256 hashes.
use generic_array::typenum::U32;
use generic_array::GenericArray;
use generic_array::typenum::U32;
use sha2::{Digest, Sha256};
pub type Hash = GenericArray<u8, U32>;