Don't reexport bigint from util

This commit is contained in:
Fredrik
2017-09-04 16:36:49 +02:00
parent 56f46edab8
commit 308f36a532
285 changed files with 675 additions and 332 deletions

View File

@@ -19,6 +19,8 @@
use std::sync::{Weak, Arc};
use std::collections::BTreeMap;
use std::cmp;
use bigint::prelude::U256;
use bigint::hash::{H256, H520};
use util::*;
use ethkey::{recover, public_to_address, Signature};
use account_provider::AccountProvider;
@@ -253,7 +255,7 @@ impl Engine for BasicAuthority {
mod tests {
use std::sync::Arc;
use hash::keccak;
use util::*;
use bigint::hash::H520;
use block::*;
use error::{BlockError, Error};
use tests::helpers::*;