Update test, fix number. (#3612)

This commit is contained in:
Gav Wood
2016-11-25 13:03:15 +01:00
committed by Arkadiy Paronyan
parent 0e2cd1d080
commit d0312b89ad
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ fn do_json_test(json_data: &[u8]) -> Vec<String> {
Some(x) if x < 1_150_000 => &old_schedule,
Some(_) => &new_schedule
};
let allow_network_id_of_one = number.map_or(false, |n| n >= 3_500_000);
let allow_network_id_of_one = number.map_or(false, |n| n >= 2_675_000);
let rlp: Vec<u8> = test.rlp.into();
let res = UntrustedRlp::new(&rlp)