Skip to content

Commit

Permalink
lower faucet diff to 1k
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild committed Nov 7, 2024
1 parent c05342a commit 42fb426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/subtensor/src/subnets/registration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ impl<T: Config> Pallet<T> {
);

// --- 3. Ensure the supplied work passes the difficulty.
let difficulty: U256 = U256::from(1_000_000); // Base faucet difficulty.
let difficulty: U256 = U256::from(1_000); // Base faucet difficulty.
let work_hash: H256 = Self::vec_to_hash(work.clone());
ensure!(
Self::hash_meets_difficulty(&work_hash, difficulty),
Expand Down

0 comments on commit 42fb426

Please sign in to comment.