Move hash into its own module

This commit is contained in:
Greg Fitzgerald
2018-03-06 17:20:37 -07:00
parent 5d990502cb
commit 5a44c36b1f
11 changed files with 37 additions and 28 deletions

View File

@ -7,7 +7,8 @@ use std::io;
use bincode::{deserialize, serialize};
use transaction::Transaction;
use signature::{PublicKey, Signature};
use log::{Entry, Sha256Hash};
use hash::Sha256Hash;
use log::Entry;
use ring::signature::Ed25519KeyPair;
use accountant_skel::{Request, Response};