From 487d6a09a7e1acb581a2f4e1612281c19bde1d62 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Tue, 17 Sep 2024 17:24:39 -0400 Subject: [PATCH] Fix silent rebase conflict that broke tests 429cbe1a060a5ee7abb421c65d2cf5e503909215 merged a PR that renamed Offer::signing_pubkey to Offer::issuer_signing_pubkey. However, there was a silent rebase conflict and a test added as part of 1059f5ffc55d3c21bf4d3ae82fe185f588a53116 did not get the memo and used the old method name, breaking the test build. --- lightning/src/ln/offers_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/ln/offers_tests.rs b/lightning/src/ln/offers_tests.rs index a9805cfed..9ea8856f8 100644 --- a/lightning/src/ln/offers_tests.rs +++ b/lightning/src/ln/offers_tests.rs @@ -2287,7 +2287,7 @@ fn no_double_pay_with_stale_channelmanager() { .clear_paths() .amount_msats(amt_msat) .build().unwrap(); - assert_eq!(offer.signing_pubkey(), Some(bob_id)); + assert_eq!(offer.issuer_signing_pubkey(), Some(bob_id)); assert!(offer.paths().is_empty()); let payment_id = PaymentId([1; 32]); -- 2.39.5