fixed homestead transition block number in transaction json-tests

This commit is contained in:
debris 2016-03-29 14:34:03 +02:00
parent 3d578bec76
commit 94ec102d67
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ fn do_json_test(json_data: &[u8]) -> Vec<String> {
let number: Option<u64> = test.block_number.map(Into::into);
let schedule = match number {
None => &old_schedule,
Some(x) if x < 1_000_000 => &old_schedule,
Some(x) if x < 1_150_000 => &old_schedule,
Some(_) => &new_schedule
};