Skip to content

Commit

Permalink
Scarb fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Nov 22, 2024
1 parent 29bb263 commit e0b8e3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/engine/src/signature/sighash.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ fn is_valid_taproot_sighash(hash_type: u32) -> bool {
|| hash_type == constants::SIG_HASH_ALL
|| hash_type == constants::SIG_HASH_NONE
|| hash_type == constants::SIG_HASH_SINGLE
|| hash_type == 0x81 || hash_type == 0x82 || hash_type == 0x83 {
|| hash_type == 0x81
|| hash_type == 0x82
|| hash_type == 0x83 {
return true;
} else {
return false;
Expand Down

0 comments on commit e0b8e3c

Please sign in to comment.