We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1c7f0 commit bdfca27Copy full SHA for bdfca27
1 file changed
lightning/src/ln/funding.rs
@@ -117,6 +117,14 @@ pub enum FundingContributionError {
117
max_feerate: FeeRate,
118
},
119
/// The feerate is below the minimum RBF feerate.
120
+ ///
121
+ /// Note: [`FundingTemplate::min_rbf_feerate`] may be derived from an in-progress
122
+ /// negotiation that later aborts, leaving a stale (higher than necessary) minimum. If
123
+ /// this error occurs after receiving [`Event::SpliceFailed`], call
124
+ /// [`ChannelManager::splice_channel`] again to get a fresh template.
125
126
+ /// [`Event::SpliceFailed`]: crate::events::Event::SpliceFailed
127
+ /// [`ChannelManager::splice_channel`]: crate::ln::channelmanager::ChannelManager::splice_channel
128
FeeRateBelowRbfMinimum {
129
/// The requested feerate.
130
feerate: FeeRate,
0 commit comments