Skip to content

Commit 9e121b0

Browse files
committed
feat: change consensus to be 33%,33%,33% pow
1 parent c24b023 commit 9e121b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base_layer/core/src/consensus/consensus_constants.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -758,17 +758,17 @@ impl ConsensusConstants {
758758
algos.insert(PowAlgorithm::Sha3x, PowAlgorithmConstants {
759759
min_difficulty: Difficulty::from_u64(150_000_000_000).expect("valid difficulty"),
760760
max_difficulty: Difficulty::max(),
761-
target_time: 240,
761+
target_time: 360,
762762
});
763763
algos.insert(PowAlgorithm::RandomXM, PowAlgorithmConstants {
764764
min_difficulty: Difficulty::from_u64(1_200_000).expect("valid difficulty"),
765765
max_difficulty: Difficulty::max(),
766-
target_time: 480,
766+
target_time: 360,
767767
});
768768
algos.insert(PowAlgorithm::RandomXT, PowAlgorithmConstants {
769769
min_difficulty: Difficulty::from_u64(1_200_000).expect("valid difficulty"),
770770
max_difficulty: Difficulty::max(),
771-
target_time: 480,
771+
target_time: 360,
772772
});
773773
con_4.blockchain_version = 1;
774774
con_4.valid_blockchain_version_range = 1..=1;

0 commit comments

Comments
 (0)