Skip to content

Commit

Permalink
chore: Remove unnecessary mut modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
luckysori committed Jul 19, 2023
1 parent e7e3967 commit 2af64a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlc/src/channel/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub fn create_settle_transaction(
)?)
/ (output.len() as u64);

for mut o in &mut output {
for o in &mut output {
o.value += remaining_fee;
}

Expand Down

0 comments on commit 2af64a9

Please sign in to comment.