Skip to content

Commit

Permalink
fix: return unsupported kind for PoisonMicroblock (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Apr 2, 2024
1 parent 31dfbf1 commit 123ec9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/chainhook-sdk/src/indexer/stacks/mod.rs
Expand Up @@ -826,7 +826,7 @@ pub fn get_tx_description(
StacksTransactionKind::TenureChange,
),
TransactionPayload::PoisonMicroblock(_, _) => {
unimplemented!()
(format!("other"), StacksTransactionKind::Unsupported)
}
};
Ok((description, tx_type, fee, nonce, sender, sponsor))
Expand Down

0 comments on commit 123ec9d

Please sign in to comment.