Skip to content

Commit

Permalink
Fix silent rebase conflict that broke tests
Browse files Browse the repository at this point in the history
429cbe1 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
1059f5f did not get the memo and used the old
method name, breaking the test build.
  • Loading branch information
valentinewallace committed Sep 17, 2024
1 parent 815d255 commit 487d6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/src/ln/offers_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 487d6a0

Please sign in to comment.