Skip to content

Commit 63413b0

Browse files
committed
f - log outpoint
1 parent dc0b7b7 commit 63413b0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lightning/src/ln/channel.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10688,7 +10688,10 @@ where
1068810688
let message_len = MESSAGE_TEMPLATE.serialized_length() + tx.serialized_length();
1068910689
if message_len > LN_MAX_MSG_LEN {
1069010690
return Err(APIError::APIMisuseError {
10691-
err: format!("Funding input's prevtx is too large for tx_add_input"),
10691+
err: format!(
10692+
"Funding input references a prevtx that is too large for tx_add_input: {}",
10693+
txin.previous_output,
10694+
),
1069210695
});
1069310696
}
1069410697

0 commit comments

Comments
 (0)