File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -781,6 +781,7 @@ where
781
781
LdkEvent :: DiscardFunding { .. } => { }
782
782
LdkEvent :: HTLCIntercepted { .. } => { }
783
783
LdkEvent :: BumpTransaction ( _) => { }
784
+ LdkEvent :: InvoiceRequestFailed { .. } => { }
784
785
}
785
786
}
786
787
}
Original file line number Diff line number Diff line change @@ -440,6 +440,18 @@ where
440
440
fn sign_gossip_message ( & self , msg : UnsignedGossipMessage < ' _ > ) -> Result < Signature , ( ) > {
441
441
self . inner . sign_gossip_message ( msg)
442
442
}
443
+
444
+ fn sign_bolt12_invoice (
445
+ & self , invoice : & lightning:: offers:: invoice:: UnsignedBolt12Invoice ,
446
+ ) -> Result < bitcoin:: secp256k1:: schnorr:: Signature , ( ) > {
447
+ self . inner . sign_bolt12_invoice ( invoice)
448
+ }
449
+
450
+ fn sign_bolt12_invoice_request (
451
+ & self , invoice_request : & lightning:: offers:: invoice_request:: UnsignedInvoiceRequest ,
452
+ ) -> Result < bitcoin:: secp256k1:: schnorr:: Signature , ( ) > {
453
+ self . inner . sign_bolt12_invoice_request ( invoice_request)
454
+ }
443
455
}
444
456
445
457
impl < D , L : Deref > EntropySource for WalletKeysManager < D , L >
You can’t perform that action at this time.
0 commit comments