Fix missing imports in tests I had missed

This commit is contained in:
Fredrik 2017-09-05 10:18:21 +02:00
parent a688370c9d
commit d1930ac708
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
pub use bigint::prelude::U256;
pub use bigint::hash::H256;
pub use util::*;
use std::collections::HashSet;
use std::io::Read;

View File

@ -16,7 +16,7 @@
use ethjson;
use util::trie::{TrieFactory, TrieSpec};
use util::hash::H256;
use bigint::hash::H256;
use util::memorydb::MemoryDB;
fn test_trie(json: &[u8], trie: TrieSpec) -> Vec<String> {