Skip to content

Commit 5dcd6c4

Browse files
authored
Merge pull request #3748 from tnull/2025-04-3509-followups
Address #3509 followups
2 parents f507778 + d0f63f5 commit 5dcd6c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightning-liquidity/src/lsps2/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ impl OutboundJITChannelState {
256256
Ok(Some(forward_payment))
257257
} else {
258258
*self = OutboundJITChannelState::PendingPayment {
259-
payment_queue: payment_queue.clone(),
259+
payment_queue,
260260
opening_fee_msat: *opening_fee_msat,
261261
channel_id: *channel_id,
262262
};

lightning/src/util/wakers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl Notifier {
4949
/// Wake waiters, tracking that wake needs to occur even if there are currently no waiters.
5050
///
5151
/// We deem the notification successful either directly after any callbacks were made, or after
52-
/// the user [`poll`]ed a previously-completed future.
52+
/// the user [`poll`]ed a previously-generated [`Future`].
5353
///
5454
/// [`poll`]: core::future::Future::poll
5555
pub fn notify(&self) {

0 commit comments

Comments
 (0)