Revert "move siphash out of pow and into util" (#635)

* Revert "move siphash out of pow and into util (#633)"

This reverts commit dae90543c2.
This commit is contained in:
AntiochP 2018-01-18 19:53:53 -05:00 committed by GitHub
parent 885c2d73ea
commit 916d9cce57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 25 deletions

View file

@ -23,7 +23,7 @@ use std::cmp;
use blake2;
use core::core::Proof;
use util::siphash::siphash24;
use siphash::siphash24;
use MiningWorker;
const MAXPATHLEN: usize = 8192;

View file

@ -44,6 +44,7 @@ extern crate grin_util as util;
extern crate cuckoo_miner;
mod siphash;
pub mod plugin;
pub mod cuckoo;
pub mod types;

View file

@ -1,4 +1,4 @@
// Copyright 2018 The Grin Developers
// Copyright 2016 The Grin Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.

View file

@ -50,8 +50,6 @@ pub use secp_static::static_secp_instance;
pub mod types;
pub use types::{LoggingConfig, LogLevel};
pub mod siphash;
// other utils
use std::cell::{Ref, RefCell};
#[allow(unused_imports)]