Skip to content

Commit 387a14c

Browse files
committed
f - log outpoint
1 parent 55ce31e commit 387a14c

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
@@ -10680,7 +10680,10 @@ where
1068010680
let message_len = MESSAGE_TEMPLATE.serialized_length() + tx.serialized_length();
1068110681
if message_len > LN_MAX_MSG_LEN {
1068210682
return Err(APIError::APIMisuseError {
10683-
err: format!("Funding input's prevtx is too large for tx_add_input"),
10683+
err: format!(
10684+
"Funding input references a prevtx that is too large for tx_add_input: {}",
10685+
txin.previous_output,
10686+
),
1068410687
});
1068510688
}
1068610689

0 commit comments

Comments
 (0)