fixed missing import

This commit is contained in:
debris 2016-03-19 18:38:02 +01:00
parent 2face3f938
commit 24cb15ef2e

View File

@ -21,10 +21,11 @@ use ethereum;
use tests::helpers::*;
use devtools::*;
use spec::Genesis;
use ethjson;
pub fn json_chain_test(json_data: &[u8], era: ChainEra) -> Vec<String> {
init_log();
let tests = ethjson::blockchain::Test.load(json_data).unwrap();
let tests = ethjson::blockchain::Test::load(json_data).unwrap();
let mut failed = Vec::new();
for (name, blockchain) in tests.deref() {