Remove misleading comment.

This commit is contained in:
Gav Wood 2016-01-27 13:29:52 +01:00
parent fe0363e230
commit f6d7adf693

View File

@ -41,7 +41,7 @@ fn do_json_test(json_data: &[u8]) -> Vec<String> {
}
client.flush_queue();
let imported_ok = client.import_verified_blocks(&IoChannel::disconnected()) > 0;
assert_eq!(imported_ok, is_valid); // may yet be invalid for the later stages, so can't do a hard check.
assert_eq!(imported_ok, is_valid);
}
fail_unless(client.chain_info().best_block_hash == H256::from_json(&test["lastblockhash"]));
}