@@ -35,31 +35,31 @@ pub fn load_machine(reader: &[u8]) -> Machine {
35
35
}
36
36
37
37
/// Create a new Foundation Frontier-era chain spec as though it never changes to Homestead.
38
- pub fn new_frontier_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/frontier_test.json" ) ) }
38
+ pub fn new_frontier_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ frontier_test.json" ) ) }
39
39
40
40
/// Create a new Foundation Homestead-era chain spec as though it never changed from Frontier.
41
- pub fn new_homestead_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/homestead_test.json" ) ) }
41
+ pub fn new_homestead_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ homestead_test.json" ) ) }
42
42
43
43
/// Create a new Foundation Homestead-EIP210-era chain spec as though it never changed from Homestead/Frontier.
44
- pub fn new_eip210_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/eip210_test.json" ) ) }
44
+ pub fn new_eip210_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ eip210_test.json" ) ) }
45
45
46
46
/// Create a new Foundation Byzantium era spec.
47
- pub fn new_byzantium_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/byzantium_test.json" ) ) }
47
+ pub fn new_byzantium_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ byzantium_test.json" ) ) }
48
48
49
49
/// Create a new Foundation Constantinople era spec.
50
- pub fn new_constantinople_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/constantinople_test.json" ) ) }
50
+ pub fn new_constantinople_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ constantinople_test.json" ) ) }
51
51
52
52
/// Create a new Foundation St. Peter's (Contantinople Fix) era spec.
53
- pub fn new_constantinople_fix_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/st_peters_test.json" ) ) }
53
+ pub fn new_constantinople_fix_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ st_peters_test.json" ) ) }
54
54
55
55
/// Create a new Foundation Istanbul era spec.
56
- pub fn new_istanbul_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/istanbul_test.json" ) ) }
56
+ pub fn new_istanbul_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ istanbul_test.json" ) ) }
57
57
58
58
/// Create a new Foundation Berlin era spec.
59
- pub fn new_berlin_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/berlin_test.json" ) ) }
59
+ pub fn new_berlin_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ berlin_test.json" ) ) }
60
60
61
61
/// Create a new Musicoin-MCIP3-era spec.
62
- pub fn new_mcip3_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/mcip3_test.json" ) ) }
62
+ pub fn new_mcip3_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ mcip3_test.json" ) ) }
63
63
64
64
/// Create new Kovan spec with wasm activated at certain block
65
- pub fn new_kovan_wasm_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/kovan_wasm_test.json" ) ) }
65
+ pub fn new_kovan_wasm_test_machine ( ) -> Machine { load_machine ( include_bytes ! ( "../../res/ethereum/test-specs/ kovan_wasm_test.json" ) ) }
0 commit comments