Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykoren committed Feb 19, 2025
1 parent f289651 commit 15738e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const FLAG_SPENDS_ENABLED: u8 = 0b0000_0001;
const FLAG_OUTPUTS_ENABLED: u8 = 0b0000_0010;
const FLAG_ZSA_ENABLED: u8 = 0b0000_0100;
const FLAG_SWAPS_ENABLED: u8 = 0b0000_1000;
const FLAGS_EXPECTED_UNSET: u8 = !(FLAG_SPENDS_ENABLED | FLAG_OUTPUTS_ENABLED | FLAG_ZSA_ENABLED | FLAG_SWAPS_ENABLED);
const FLAGS_EXPECTED_UNSET: u8 =
!(FLAG_SPENDS_ENABLED | FLAG_OUTPUTS_ENABLED | FLAG_ZSA_ENABLED | FLAG_SWAPS_ENABLED);

impl Flags {
/// Construct a set of flags from its constituent parts
Expand Down

0 comments on commit 15738e9

Please sign in to comment.