Skip to content

Commit eaa2082

Browse files
committed
f clearer debug msg
1 parent 7608b95 commit eaa2082

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
@@ -13194,7 +13194,7 @@ where
1319413194
let mut claimable_payments = channel_manager.claimable_payments.lock().unwrap();
1319513195
match claimable_payments.pending_claiming_payments.entry(payment_hash) {
1319613196
hash_map::Entry::Occupied(_) => {
13197-
debug_assert!(false, "unreachable");
13197+
debug_assert!(false, "Entry was added in begin_claiming_payment");
1319813198
return Err(DecodeError::InvalidValue);
1319913199
},
1320013200
hash_map::Entry::Vacant(entry) => {

0 commit comments

Comments
 (0)