@@ -386,7 +386,7 @@ impl<'a> InvoiceBuilder<'a, DerivedSigningPubkey> {
386386
387387impl < ' a , S : SigningPubkeyStrategy > InvoiceBuilder < ' a , S > {
388388 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 ) ;
390390
391391 #[ cfg( test) ]
392392 invoice_builder_methods_test ! ( self , Self , self . invoice. fields_mut( ) , Self , self , mut ) ;
@@ -396,29 +396,29 @@ impl<'a, S: SigningPubkeyStrategy> InvoiceBuilder<'a, S> {
396396impl < ' a > InvoiceWithExplicitSigningPubkeyBuilder < ' a > {
397397 invoice_explicit_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
398398 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 ) ;
400400}
401401
402402#[ cfg( all( c_bindings, test) ) ]
403403impl < ' a > InvoiceWithExplicitSigningPubkeyBuilder < ' a > {
404404 invoice_explicit_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
405405 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 ) ;
407407 invoice_builder_methods_test ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self ) ;
408408}
409409
410410#[ cfg( all( c_bindings, not( test) ) ) ]
411411impl < ' a > InvoiceWithDerivedSigningPubkeyBuilder < ' a > {
412412 invoice_derived_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
413413 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 ) ;
415415}
416416
417417#[ cfg( all( c_bindings, test) ) ]
418418impl < ' a > InvoiceWithDerivedSigningPubkeyBuilder < ' a > {
419419 invoice_derived_signing_pubkey_builder_methods ! ( self , & mut Self ) ;
420420 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 ) ;
422422 invoice_builder_methods_test ! ( self , & mut Self , self . invoice. fields_mut( ) , & mut Self , self ) ;
423423}
424424
0 commit comments