Fix silent rebase conflict that broke tests

429cbe1a06 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
1059f5ffc5 did not get the memo and used the old
method name, breaking the test build.
This commit is contained in:
Valentine Wallace 2024-09-17 17:24:39 -04:00
parent 815d255aa8
commit 487d6a09a7
No known key found for this signature in database
GPG key ID: FD3E106A2CE099B4

View file

@ -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]);