Skip to content

Commit

Permalink
Remove typo in lowest_fee comment
Browse files Browse the repository at this point in the history
  • Loading branch information
LLFourn committed Jan 25, 2024
1 parent 76e67a3 commit c6f0682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metrics/lowest_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl BnbMetric for LowestFee {
fee_for_the_tx > 0,
"must not be called unless selection has met target"
);
// Why `spend_fee` rounds up here. We could use floats but I felt it was just better to
// `spend_fee` rounds up here. We could use floats but I felt it was just better to
// accept the extra 1 sat penality to having a change output
let fee_for_spending_drain = drain.weights.spend_fee(self.long_term_feerate);
fee_for_the_tx as u64 + fee_for_spending_drain
Expand Down

0 comments on commit c6f0682

Please sign in to comment.