Skip to content

Commit

Permalink
Set testnet hardfork parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
peilun-conflux committed Jun 11, 2024
1 parent d88d953 commit 396da6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/client/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ build_config! {
(cip112_transition_height, (Option<u64>), Some(129100000))
(cip118_transition_number, (Option<u64>), Some(171570000))
(cip119_transition_number, (Option<u64>), Some(171570000))
(next_hardfork_transition_number, (Option<u64>), None)
(next_hardfork_transition_height, (Option<u64>), None)
(next_hardfork_transition_number, (Option<u64>), Some(226570000))
(next_hardfork_transition_height, (Option<u64>), Some(175600000))
(cip1559_transition_height, (Option<u64>), None)
(cancun_opcodes_transition_number, (Option<u64>), None)
(referee_bound, (usize), REFEREE_DEFAULT_BOUND)
Expand Down Expand Up @@ -352,7 +352,7 @@ build_config! {
(pos_cip99_in_queue_locked_views, (u64), 18720)
(pos_cip99_out_queue_locked_views, (u64), 1440)
(nonce_limit_transition_view, (u64), 465540)
(pos_cip136_transition_view, (u64), u64::MAX)
(pos_cip136_transition_view, (u64), 1685544)
(pos_cip136_in_queue_locked_views, (u64), IN_QUEUE_LOCKED_VIEWS * 2)
(pos_cip136_out_queue_locked_views, (u64), OUT_QUEUE_LOCKED_VIEWS * 2)
(pos_cip136_round_per_term, (u64), ROUND_PER_TERM * 2)
Expand Down

0 comments on commit 396da6d

Please sign in to comment.