Skip to content

Commit

Permalink
chore: new release nextnet v1.5.1-rc.2 (#6579)
Browse files Browse the repository at this point in the history
Description
---
hot fix for difficulty issue
  • Loading branch information
SWvheerden authored Sep 23, 2024
1 parent 389ae99 commit c03af16
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/core/src/consensus/consensus_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ impl ConsensusConstants {
pub fn nextnet() -> Vec<Self> {
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,
});
Expand Down
7 changes: 7 additions & 0 deletions changelog-nextnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit c03af16

Please sign in to comment.