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 @@ -780,6 +780,7 @@ where
780780 LdkEvent :: DiscardFunding { .. } => { }
781781 LdkEvent :: HTLCIntercepted { .. } => { }
782782 LdkEvent :: BumpTransaction ( _) => { }
783+ LdkEvent :: InvoiceRequestFailed { .. } => { }
783784 }
784785 }
785786}
Original file line number Diff line number Diff line change @@ -440,6 +440,18 @@ where
440440 fn sign_gossip_message ( & self , msg : UnsignedGossipMessage < ' _ > ) -> Result < Signature , ( ) > {
441441 self . inner . sign_gossip_message ( msg)
442442 }
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+ }
443455}
444456
445457impl < D , L : Deref > EntropySource for WalletKeysManager < D , L >
You can’t perform that action at this time.
0 commit comments