Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
DaughterOfMars committed Dec 17, 2024
1 parent ebc7008 commit af4350a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ where

fn filter_voting_output(&mut self, output: &mut Result<(OutputHeader, Output)>) {
if let Ok((header, inner)) = output {
if is_voting_output(&inner) {
if is_voting_output(inner) {
self.voting_outputs.push(header.output_id());
// replace the inner output
*inner = BasicOutputBuilder::from(inner.as_basic())
Expand Down

0 comments on commit af4350a

Please sign in to comment.