Skip to content

Commit

Permalink
apply suggestion from review
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Jun 27, 2024
1 parent 99e745e commit 59c8e1a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/chainhook-sdk/src/chainhooks/bitcoin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,11 +319,11 @@ pub fn get_canonical_pox_config(network: &BitcoinNetwork) -> PoxConfig {
#[derive(Debug, Clone, PartialEq)]
#[repr(u8)]
pub enum StacksOpcodes {
BlockCommit = '[' as u8,
KeyRegister = '^' as u8,
StackStx = 'x' as u8,
PreStx = 'p' as u8,
TransferStx = '$' as u8,
BlockCommit = b'[',
KeyRegister = b'^',
StackStx = b'x',
PreStx = b'p',
TransferStx = b'$',
}

impl TryFrom<u8> for StacksOpcodes {
Expand Down

0 comments on commit 59c8e1a

Please sign in to comment.