Skip to content

Commit

Permalink
correct weatherwax values
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Jan 20, 2022
1 parent a8e368b commit a0c9207
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base_layer/core/src/consensus/consensus_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ impl ConsensusConstants {
// setting sha3/monero to 40/60 split
algos.insert(PowAlgorithm::Sha3, PowAlgorithmConstants {
max_target_time: 180,
min_difficulty: 60_00.into(),
min_difficulty: 60_000_000.into(),
max_difficulty: u64::MAX.into(),
target_time: 30,
target_time: 300,
});
algos.insert(PowAlgorithm::Monero, PowAlgorithmConstants {
max_target_time: 1200,
Expand Down Expand Up @@ -320,7 +320,7 @@ impl ConsensusConstants {
// sha3/monero to 40/60 split
algos.insert(PowAlgorithm::Sha3, PowAlgorithmConstants {
max_target_time: 1800,
min_difficulty: 60_000.into(),
min_difficulty: 60_000_000.into(),
max_difficulty: u64::MAX.into(),
target_time: 300,
});
Expand Down

0 comments on commit a0c9207

Please sign in to comment.