@@ -195,6 +195,7 @@ build_config! {
195195 ( eoa_code_transition_height, ( Option <u64 >) , Some ( 129680000 ) )
196196 ( cip151_transition_height, ( Option <u64 >) , None )
197197 ( cip645_transition_height, ( Option <u64 >) , None )
198+ ( cip145_fix_transition_height, ( Option <u64 >) , None )
198199 // For test only
199200 ( align_evm_transition_height, ( u64 ) , u64 :: MAX )
200201
@@ -1513,14 +1514,17 @@ impl Configuration {
15131514 //
15141515 set_conf ! (
15151516 self . raw_conf. eoa_code_transition_height. unwrap_or( default_transition_time) ;
1516- params. transition_heights => { cip150, cip151, cip152, cip154, cip7702, cip645, eip2537, eip2935, eip7623 }
1517+ params. transition_heights => { cip150, cip151, cip152, cip154, cip7702, cip645, eip2537, eip2935, eip7623, cip145_fix }
15171518 ) ;
15181519 if let Some ( x) = self . raw_conf . cip151_transition_height {
15191520 params. transition_heights . cip151 = x;
15201521 }
15211522 if let Some ( x) = self . raw_conf . cip645_transition_height {
15221523 params. transition_heights . cip645 = x;
15231524 }
1525+ if let Some ( x) = self . raw_conf . cip145_fix_transition_height {
1526+ params. transition_heights . cip145_fix = x;
1527+ }
15241528 params. transition_heights . align_evm =
15251529 self . raw_conf . align_evm_transition_height ;
15261530 }
0 commit comments