Skip to content

Commit

Permalink
Release v2.3.0-testnet for hardfork.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peilun Li committed Jun 29, 2023
1 parent 566ec1a commit ea8f4d5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conflux"
version = "2.2.5-2-testnet"
version = "2.3.0-testnet"
edition = "2018"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client"
version = "2.2.5-2-testnet"
version = "2.3.0-testnet"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions client/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ build_config! {
(cip90_transition_number,(Option<u64>), Some(77340000))
(cip105_transition_number, (Option<u64>), Some(122700000))
(sigma_fix_transition_number, (Option<u64>), Some(125360000))
(cip107_transition_number, (Option<u64>), None)
(cip112_transition_height, (Option<u64>), None)
(cip107_transition_number, (Option<u64>), Some(167000000))
(cip112_transition_height, (Option<u64>), Some(129100000))
(referee_bound, (usize), REFEREE_DEFAULT_BOUND)
(params_dao_vote_period, (u64), DAO_PARAMETER_VOTE_PERIOD)
(timer_chain_beta, (u64), TIMER_CHAIN_DEFAULT_BETA)
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Conflux core library"
homepage = "https://www.confluxnetwork.org"
license = "GPL-3.0"
name = "cfxcore"
version = "2.2.5-2-testnet"
version = "2.3.0-testnet"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion core/src/pos/config/src/config/consensus_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Default for ConsensusConfig {
// 60 epochs should have been generated in 4 minutes.
round_initial_timeout_ms: 60_000,
cip113_round_initial_timeout_ms: 30_000,
cip113_transition_epoch: u64::MAX,
cip113_transition_epoch: 12365,
proposer_type: ConsensusProposerType::VrfProposer,
safety_rules: SafetyRulesConfig::default(),
sync_only: false,
Expand Down

0 comments on commit ea8f4d5

Please sign in to comment.