Skip to content

Commit

Permalink
fix: add burnt utxos to side chain query (#5125)
Browse files Browse the repository at this point in the history
Description
---
Add burnt UTXOs to the list of sidechain UTXOs that the second layer queries

Motivation and Context
---
The second layer queries only sidechain-relevant UTXOs. Burns were excluded, but need to be included in order to be scanned

How Has This Been Tested?
---
Manual testing with second layer scanner
  • Loading branch information
stringhandler authored Jan 18, 2023
1 parent 7eeeff4 commit fb2fa4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl OutputType {
pub fn is_sidechain_type(&self) -> bool {
matches!(
self,
OutputType::ValidatorNodeRegistration | OutputType::CodeTemplateRegistration
OutputType::ValidatorNodeRegistration | OutputType::CodeTemplateRegistration | OutputType::Burn
)
}
}
Expand Down

0 comments on commit fb2fa4b

Please sign in to comment.