Skip to content

Commit 592b47a

Browse files
update duplicate incoming shared secret error message
1 parent 8b2d232 commit 592b47a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3232,7 +3232,7 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
32323232
});
32333233
},
32343234
hash_map::Entry::Occupied(_) => {
3235-
fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3235+
fail_forward!(format!("Detected duplicate intercepted payment over short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
32363236
}
32373237
}
32383238
} else {

0 commit comments

Comments
 (0)