Skip to content

Commit 7e81894

Browse files
f rename
1 parent d09338d commit 7e81894

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2720,7 +2720,7 @@ where
27202720
Ok((next_hop, shared_secret))
27212721
}
27222722

2723-
fn construct_pending_htlc_info<'a>(
2723+
fn construct_pending_htlc_status<'a>(
27242724
&self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
27252725
) -> PendingHTLCStatus {
27262726
macro_rules! return_err {
@@ -5269,7 +5269,7 @@ where
52695269

52705270
let pending_forward_info = match decoded_hop_res {
52715271
Ok((next_hop, shared_secret)) =>
5272-
self.construct_pending_htlc_info(msg, shared_secret, next_hop),
5272+
self.construct_pending_htlc_status(msg, shared_secret, next_hop),
52735273
Err(e) => PendingHTLCStatus::Fail(e)
52745274
};
52755275
let create_pending_htlc_status = |chan: &Channel<<SP::Target as SignerProvider>::Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {

0 commit comments

Comments
 (0)