From e39f65b128a8e7dc7ec28005c72c97ce5c21a43c Mon Sep 17 00:00:00 2001 From: benthecarman Date: Mon, 22 Jun 2026 19:29:49 -0500 Subject: [PATCH] Fix compile issue in test In c3051b0ce3a7d40f3bf64cd7d1dceab22263b688 this was introduced. I thought I ran full CI locally before merging but maybe only ran e2e tests and not the ldk-server unit tests. This fixes the small compile issue. --- ldk-server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldk-server/src/main.rs b/ldk-server/src/main.rs index d895d437..3824d68c 100644 --- a/ldk-server/src/main.rs +++ b/ldk-server/src/main.rs @@ -991,7 +991,7 @@ mod tests { CustomTlvRecord { type_num: 65537, value: vec![1, 2, 3] }, CustomTlvRecord { type_num: 65538, value: Vec::new() }, ]; - let proto = build_payment_claimable_proto(&payment, &records); + let proto = build_payment_claimable_proto(&payment, &records, None); assert_eq!(proto.custom_records.len(), 2); assert_eq!(proto.custom_records[0].type_num, 65537); assert_eq!(proto.custom_records[0].value.to_vec(), vec![1, 2, 3]);