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

@@ -2,7 +2,8 @@
//! event log to record transactions. Its users can deposit funds and
//! transfer funds to other users.
use log::{Entry, Sha256Hash};
use hash::Sha256Hash;
use log::Entry;
use event::Event;
use transaction::Transaction;
use signature::{PublicKey, Signature};