remove verify_transaction_unordered from engine (#10891)

This commit is contained in:
Marek Kotewicz
2019-07-21 21:15:08 +02:00
committed by GitHub
parent acb1243214
commit d1b28bf57e
6 changed files with 9 additions and 21 deletions

View File

@@ -76,7 +76,7 @@ fn do_json_test<H: FnMut(&str, HookType)>(json_data: &[u8], start_stop_hook: &mu
}.into());
}
spec.engine.verify_transaction_basic(&t, &header)?;
Ok(spec.engine.verify_transaction_unordered(t, &header)?)
Ok(t.verify_unordered()?)
});
match (res, result.hash, result.sender) {