@@ -386,7 +386,7 @@ impl<'a> InvoiceBuilder<'a, DerivedSigningPubkey> {
386
386
387
387
impl < ' a , S : SigningPubkeyStrategy > InvoiceBuilder < ' a , S > {
388
388
invoice_builder_methods ! ( self , Self , Self , self , S , mut ) ;
389
- invoice_builder_methods_common ! ( self , Self , self . invoice. fields_mut( ) , Self , self , S , Bolt12Invoice , mut ) ;
389
+ invoice_builder_methods_common ! ( self , Self , self . invoice. fields_mut( ) , Self , self , Bolt12Invoice , mut ) ;
390
390
391
391
#[ cfg( test) ]
392
392
invoice_builder_methods_test ! ( self , Self , self . invoice. fields_mut( ) , Self , self , mut ) ;
@@ -396,29 +396,29 @@ impl<'a, S: SigningPubkeyStrategy> InvoiceBuilder<'a, S> {
396
396
impl < ' a > InvoiceWithExplicitSigningPubkeyBuilder < ' a > {
397
397
invoice_explicit_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
398
398
invoice_builder_methods ! ( self , & mut Self , ( ) , ( ) , ExplicitSigningPubkey ) ;
399
- invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , ( ) , ( ) , ExplicitSigningPubkey , Bolt12Invoice ) ;
399
+ invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , ( ) , ( ) , Bolt12Invoice ) ;
400
400
}
401
401
402
402
#[ cfg( all( c_bindings, test) ) ]
403
403
impl < ' a > InvoiceWithExplicitSigningPubkeyBuilder < ' a > {
404
404
invoice_explicit_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
405
405
invoice_builder_methods ! ( self , & mut Self , & mut Self , self , ExplicitSigningPubkey ) ;
406
- invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self , ExplicitSigningPubkey , Bolt12Invoice ) ;
406
+ invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self , Bolt12Invoice ) ;
407
407
invoice_builder_methods_test ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self ) ;
408
408
}
409
409
410
410
#[ cfg( all( c_bindings, not( test) ) ) ]
411
411
impl < ' a > InvoiceWithDerivedSigningPubkeyBuilder < ' a > {
412
412
invoice_derived_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
413
413
invoice_builder_methods ! ( self , & mut Self , ( ) , ( ) , DerivedSigningPubkey ) ;
414
- invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , ( ) , ( ) , DerivedSigningPubkey , Bolt12Invoice ) ;
414
+ invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , ( ) , ( ) , Bolt12Invoice ) ;
415
415
}
416
416
417
417
#[ cfg( all( c_bindings, test) ) ]
418
418
impl < ' a > InvoiceWithDerivedSigningPubkeyBuilder < ' a > {
419
419
invoice_derived_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
420
420
invoice_builder_methods ! ( self , & mut Self , & mut Self , self , DerivedSigningPubkey ) ;
421
- invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self , DerivedSigningPubkey , Bolt12Invoice ) ;
421
+ invoice_builder_methods_common ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self , Bolt12Invoice ) ;
422
422
invoice_builder_methods_test ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self ) ;
423
423
}
424
424
0 commit comments