Skip to content

Commit

Permalink
fix: increase min difficulty
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Nov 27, 2024
1 parent 632bb4e commit 6a91548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sharechain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub const DIFFICULTY_ADJUSTMENT_WINDOW: usize = 90;
pub const BLOCK_TARGET_TIME: u64 = 10;

pub const MIN_RANDOMX_DIFFICULTY: u64 = 1_000; // 1 Khs every ten seconds
pub const MIN_SHA3X_DIFFICULTY: u64 = 10_000; // 1 Mhs every ten seconds
pub const MIN_SHA3X_DIFFICULTY: u64 = 100_000_000; // 1 Mhs every ten seconds

pub mod error;
pub mod in_memory;
Expand Down

0 comments on commit 6a91548

Please sign in to comment.