Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lightning-liquidity/src/lsps2/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ impl OutboundJITChannelState {
Ok(Some(forward_payment))
} else {
*self = OutboundJITChannelState::PendingPayment {
payment_queue: payment_queue.clone(),
payment_queue,
opening_fee_msat: *opening_fee_msat,
channel_id: *channel_id,
};
Expand Down
2 changes: 1 addition & 1 deletion lightning/src/util/wakers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Notifier {
/// Wake waiters, tracking that wake needs to occur even if there are currently no waiters.
///
/// We deem the notification successful either directly after any callbacks were made, or after
/// the user [`poll`]ed a previously-completed future.
/// the user [`poll`]ed a previously-generated [`Future`].
///
/// [`poll`]: core::future::Future::poll
pub fn notify(&self) {
Expand Down
Loading