We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76e67a3 commit c6f0682Copy full SHA for c6f0682
src/metrics/lowest_fee.rs
@@ -35,7 +35,7 @@ impl BnbMetric for LowestFee {
35
fee_for_the_tx > 0,
36
"must not be called unless selection has met target"
37
);
38
- // 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
39
// accept the extra 1 sat penality to having a change output
40
let fee_for_spending_drain = drain.weights.spend_fee(self.long_term_feerate);
41
fee_for_the_tx as u64 + fee_for_spending_drain
0 commit comments