Skip to content

Commit

Permalink
fix: pow salt
Browse files Browse the repository at this point in the history
  • Loading branch information
Zk2u committed Oct 7, 2024
1 parent c5a2886 commit f175b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl Challenge {
None => return err!(NonceNotFound),
};
let mut hasher = Sha256::new();
hasher.update(b"alpen labs faucet 2024");
hasher.update(b"strata faucet 2024");
hasher.update(nonce);
hasher.update(solution);
let pow_valid = count_leading_zeros(&hasher.finalize()) >= difficulty;
Expand Down

0 comments on commit f175b8a

Please sign in to comment.