File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -867,7 +867,7 @@ impl<Signer: Sign> Channel<Signer> {
867867 // of 1.1 sat/vbyte and a receiver that wants 1.1 rounded up to 2. Thus, we always add 250
868868 // sat/kw before the comparison here.
869869 if feerate_per_kw + 250 < lower_limit {
870- return Err ( ChannelError :: Close ( format ! ( "Peer's feerate much too low. Actual: {}. Our expected lower limit: {}" , feerate_per_kw, lower_limit) ) ) ;
870+ return Err ( ChannelError :: Close ( format ! ( "Peer's feerate much too low. Actual: {}. Our expected lower limit: {} (- 250) " , feerate_per_kw, lower_limit) ) ) ;
871871 }
872872 // We only bound the fee updates on the upper side to prevent completely absurd feerates,
873873 // always accepting up to 25 sat/vByte or 10x our fee estimator's "High Priority" fee.
You can’t perform that action at this time.
0 commit comments