Skip to content

Commit

Permalink
allow sha3 and keccak
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshOrndorff committed Jan 12, 2024
1 parent 38997d6 commit dd96449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multi-pow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ fn manual_fork_validation(_parent_number: u32, algo: SupportedHashes) -> bool {
// After the fork height this check is skipped so all the hashes become valid.
match algo {
Md5 => true,
Sha3 => false,
Keccak => false,
Sha3 => true,
Keccak => true,
}
}

Expand Down

0 comments on commit dd96449

Please sign in to comment.