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 b99da94 commit bd86078Copy full SHA for bd86078
lightning/src/ln/interactivetxs.rs
@@ -1894,7 +1894,6 @@ pub(super) fn calculate_change_output_value(
1894
.get(txin.previous_output.vout as usize)
1895
.ok_or(AbortReason::PrevTxOutInvalid)?;
1896
total_input_satoshis = total_input_satoshis.saturating_add(output.value.to_sat());
1897
- // FIXME: Can we use the Weight from context.our_funding_inputs?
1898
let weight = estimate_input_weight(output).to_wu();
1899
our_funding_inputs_weight = our_funding_inputs_weight.saturating_add(weight);
1900
}
0 commit comments