@@ -255,7 +255,7 @@ impl GenesisAccount {
255
255
/// Encapsulates parameters shaping network evolution and behavior.
256
256
///
257
257
/// See [geth's `ChainConfig`
258
- /// struct](https://github.com/ethereum/go-ethereum/blob/64dccf7aa411c5c7cd36090c3d9b9892945ae813 /params/config.go#L349 )
258
+ /// struct](https://github.com/ethereum/go-ethereum/blob/v1.14.0 /params/config.go#L326 )
259
259
/// for the source of each field.
260
260
#[ derive( Clone , Debug , PartialEq , Eq , Serialize , Deserialize ) ]
261
261
#[ serde( default , rename_all = "camelCase" ) ]
@@ -287,10 +287,6 @@ pub struct ChainConfig {
287
287
) ]
288
288
pub eip150_block : Option < u64 > ,
289
289
290
- /// The [EIP-150](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-150.md) hard fork hash.
291
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
292
- pub eip150_hash : Option < B256 > ,
293
-
294
290
/// The [EIP-155](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md) hard fork block.
295
291
#[ serde(
296
292
skip_serializing_if = "Option::is_none" ,
@@ -528,7 +524,6 @@ impl Default for ChainConfig {
528
524
dao_fork_block : None ,
529
525
dao_fork_support : false ,
530
526
eip150_block : None ,
531
- eip150_hash : None ,
532
527
eip155_block : None ,
533
528
eip158_block : None ,
534
529
byzantium_block : None ,
@@ -987,7 +982,6 @@ mod tests {
987
982
"chainId": 1337,
988
983
"homesteadBlock": 0,
989
984
"eip150Block": 0,
990
- "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
991
985
"eip155Block": 0,
992
986
"eip158Block": 0,
993
987
"byzantiumBlock": 0,
@@ -1020,9 +1014,6 @@ mod tests {
1020
1014
let expected_genesis = Genesis {
1021
1015
config : ChainConfig {
1022
1016
chain_id : 1337 ,
1023
- eip150_hash : Some (
1024
- hex ! ( "0000000000000000000000000000000000000000000000000000000000000000" ) . into ( ) ,
1025
- ) ,
1026
1017
homestead_block : Some ( 0 ) ,
1027
1018
eip150_block : Some ( 0 ) ,
1028
1019
eip155_block : Some ( 0 ) ,
@@ -1065,7 +1056,6 @@ mod tests {
1065
1056
"chainId": 1337,
1066
1057
"homesteadBlock": 0,
1067
1058
"eip150Block": 0,
1068
- "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
1069
1059
"eip155Block": 0,
1070
1060
"eip158Block": 0,
1071
1061
"byzantiumBlock": 0,
@@ -1097,9 +1087,6 @@ mod tests {
1097
1087
let expected_genesis = Genesis {
1098
1088
config : ChainConfig {
1099
1089
chain_id : 1337 ,
1100
- eip150_hash : Some (
1101
- hex ! ( "0000000000000000000000000000000000000000000000000000000000000000" ) . into ( ) ,
1102
- ) ,
1103
1090
homestead_block : Some ( 0 ) ,
1104
1091
eip150_block : Some ( 0 ) ,
1105
1092
eip155_block : Some ( 0 ) ,
0 commit comments