Skip to content

Commit

Permalink
Set hardfork parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
peilun-conflux committed Jun 27, 2024
1 parent 5a934dc commit b1071d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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(79050000))
(cip118_transition_number, (Option<u64>), Some(188900000))
(cip119_transition_number, (Option<u64>), Some(188900000))
(next_hardfork_transition_number, (Option<u64>), None)
(next_hardfork_transition_height, (Option<u64>), None)
(next_hardfork_transition_number, (Option<u64>), Some(247480000))
(next_hardfork_transition_height, (Option<u64>), Some(101900000))
(cip1559_transition_height, (Option<u64>), None)
(cancun_opcodes_transition_number, (Option<u64>), None)
(referee_bound, (usize), REFEREE_DEFAULT_BOUND)
Expand Down Expand Up @@ -355,10 +355,10 @@ build_config! {
(pos_fix_cip99_in_queue_locked_views, (u64), 18720)
(pos_fix_cip99_out_queue_locked_views, (u64), 1440)
(nonce_limit_transition_view, (u64), u64::MAX)
(pos_cip136_transition_view, (u64), u64::MAX)
(pos_cip136_in_queue_locked_views, (u64), IN_QUEUE_LOCKED_VIEWS)
(pos_cip136_out_queue_locked_views, (u64), OUT_QUEUE_LOCKED_VIEWS)
(pos_cip136_round_per_term, (u64), ROUND_PER_TERM)
(pos_cip136_transition_view, (u64), 1684080)
(pos_cip136_in_queue_locked_views, (u64), 18720 * 2)
(pos_cip136_out_queue_locked_views, (u64), 1440 * 2)
(pos_cip136_round_per_term, (u64), ROUND_PER_TERM * 2)
(dev_pos_private_key_encryption_password, (Option<String>), None)
(pos_started_as_voter, (bool), true)

Expand Down

0 comments on commit b1071d2

Please sign in to comment.