mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-15 15:39:09 +01:00
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 of1059f5ffc5
did not get the memo and used the old method name, breaking the test build.
This commit is contained in:
parent
815d255aa8
commit
487d6a09a7
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Reference in a new issue