From c03af169cf2c1cb84592ff331e1bf0f269d4faa7 Mon Sep 17 00:00:00 2001 From: SW van Heerden Date: Mon, 23 Sep 2024 17:51:36 +0200 Subject: [PATCH] chore: new release nextnet v1.5.1-rc.2 (#6579) Description --- hot fix for difficulty issue --- Cargo.lock | 2 +- base_layer/common_types/Cargo.toml | 2 +- base_layer/core/src/consensus/consensus_constants.rs | 2 +- changelog-nextnet.md | 7 +++++++ 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aa1484b418..97b6264748 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6108,7 +6108,7 @@ dependencies = [ [[package]] name = "tari_common_types" -version = "1.5.1-rc.0" +version = "1.5.1-rc.2" dependencies = [ "base64 0.21.5", "bitflags 2.4.1", diff --git a/base_layer/common_types/Cargo.toml b/base_layer/common_types/Cargo.toml index c7e6bada24..ba26834ba0 100644 --- a/base_layer/common_types/Cargo.toml +++ b/base_layer/common_types/Cargo.toml @@ -3,7 +3,7 @@ name = "tari_common_types" authors = ["The Tari Development Community"] description = "Tari cryptocurrency common types" license = "BSD-3-Clause" -version = "1.5.1-rc.0" +version = "1.5.1-rc.2" edition = "2018" [dependencies] diff --git a/base_layer/core/src/consensus/consensus_constants.rs b/base_layer/core/src/consensus/consensus_constants.rs index b6562c1922..b5235fd6d0 100644 --- a/base_layer/core/src/consensus/consensus_constants.rs +++ b/base_layer/core/src/consensus/consensus_constants.rs @@ -607,7 +607,7 @@ impl ConsensusConstants { pub fn nextnet() -> Vec { let mut algos = HashMap::new(); algos.insert(PowAlgorithm::Sha3x, PowAlgorithmConstants { - min_difficulty: Difficulty::from_u64(60_000_000).expect("valid difficulty"), + min_difficulty: Difficulty::from_u64(1_200_000_000).expect("valid difficulty"), max_difficulty: Difficulty::max(), target_time: 240, }); diff --git a/changelog-nextnet.md b/changelog-nextnet.md index 16a8f36f3c..775ef31157 100644 --- a/changelog-nextnet.md +++ b/changelog-nextnet.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. # Changelog +### [1.5.1-rc.1](https://github.com/tari-project/tari/compare/v1.5.1-rc.1...v1.5.1-rc.2) (2024-09-23) + + +### Bug Fixes + +* hot fix difficulty + ### [1.5.1-rc.0](https://github.com/tari-project/tari/compare/v1.5.0-rc.1...v1.5.1-rc.0) (2024-09-23)