@@ -3607,7 +3607,7 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitPriceResponse {
36073607 }
36083608}
36093609#[ cfg( feature = "serde" ) ]
3610- impl serde:: Serialize for MsgSubmitRepaymentAdaptorSignature {
3610+ impl serde:: Serialize for MsgSubmitRepaymentAdaptorSignatures {
36113611 #[ allow( deprecated) ]
36123612 fn serialize < S > ( & self , serializer : S ) -> core:: result:: Result < S :: Ok , S :: Error >
36133613 where
@@ -3621,25 +3621,25 @@ impl serde::Serialize for MsgSubmitRepaymentAdaptorSignature {
36213621 if !self . loan_id . is_empty ( ) {
36223622 len += 1 ;
36233623 }
3624- if !self . adaptor_signature . is_empty ( ) {
3624+ if !self . adaptor_signatures . is_empty ( ) {
36253625 len += 1 ;
36263626 }
36273627 let mut struct_ser =
3628- serializer. serialize_struct ( "side.lending.MsgSubmitRepaymentAdaptorSignature " , len) ?;
3628+ serializer. serialize_struct ( "side.lending.MsgSubmitRepaymentAdaptorSignatures " , len) ?;
36293629 if !self . sender . is_empty ( ) {
36303630 struct_ser. serialize_field ( "sender" , & self . sender ) ?;
36313631 }
36323632 if !self . loan_id . is_empty ( ) {
36333633 struct_ser. serialize_field ( "loanId" , & self . loan_id ) ?;
36343634 }
3635- if !self . adaptor_signature . is_empty ( ) {
3636- struct_ser. serialize_field ( "adaptorSignature " , & self . adaptor_signature ) ?;
3635+ if !self . adaptor_signatures . is_empty ( ) {
3636+ struct_ser. serialize_field ( "adaptorSignatures " , & self . adaptor_signatures ) ?;
36373637 }
36383638 struct_ser. end ( )
36393639 }
36403640}
36413641#[ cfg( feature = "serde" ) ]
3642- impl < ' de > serde:: Deserialize < ' de > for MsgSubmitRepaymentAdaptorSignature {
3642+ impl < ' de > serde:: Deserialize < ' de > for MsgSubmitRepaymentAdaptorSignatures {
36433643 #[ allow( deprecated) ]
36443644 fn deserialize < D > ( deserializer : D ) -> core:: result:: Result < Self , D :: Error >
36453645 where
@@ -3649,15 +3649,15 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitRepaymentAdaptorSignature {
36493649 "sender" ,
36503650 "loan_id" ,
36513651 "loanId" ,
3652- "adaptor_signature " ,
3653- "adaptorSignature " ,
3652+ "adaptor_signatures " ,
3653+ "adaptorSignatures " ,
36543654 ] ;
36553655
36563656 #[ allow( clippy:: enum_variant_names) ]
36573657 enum GeneratedField {
36583658 Sender ,
36593659 LoanId ,
3660- AdaptorSignature ,
3660+ AdaptorSignatures ,
36613661 }
36623662 #[ cfg( feature = "serde" ) ]
36633663 impl < ' de > serde:: Deserialize < ' de > for GeneratedField {
@@ -3685,8 +3685,8 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitRepaymentAdaptorSignature {
36853685 match value {
36863686 "sender" => Ok ( GeneratedField :: Sender ) ,
36873687 "loanId" | "loan_id" => Ok ( GeneratedField :: LoanId ) ,
3688- "adaptorSignature " | "adaptor_signature " => {
3689- Ok ( GeneratedField :: AdaptorSignature )
3688+ "adaptorSignatures " | "adaptor_signatures " => {
3689+ Ok ( GeneratedField :: AdaptorSignatures )
36903690 }
36913691 _ => Err ( serde:: de:: Error :: unknown_field ( value, FIELDS ) ) ,
36923692 }
@@ -3697,22 +3697,22 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitRepaymentAdaptorSignature {
36973697 }
36983698 struct GeneratedVisitor ;
36993699 impl < ' de > serde:: de:: Visitor < ' de > for GeneratedVisitor {
3700- type Value = MsgSubmitRepaymentAdaptorSignature ;
3700+ type Value = MsgSubmitRepaymentAdaptorSignatures ;
37013701
37023702 fn expecting ( & self , formatter : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
3703- formatter. write_str ( "struct side.lending.MsgSubmitRepaymentAdaptorSignature " )
3703+ formatter. write_str ( "struct side.lending.MsgSubmitRepaymentAdaptorSignatures " )
37043704 }
37053705
37063706 fn visit_map < V > (
37073707 self ,
37083708 mut map_ : V ,
3709- ) -> core:: result:: Result < MsgSubmitRepaymentAdaptorSignature , V :: Error >
3709+ ) -> core:: result:: Result < MsgSubmitRepaymentAdaptorSignatures , V :: Error >
37103710 where
37113711 V : serde:: de:: MapAccess < ' de > ,
37123712 {
37133713 let mut sender__ = None ;
37143714 let mut loan_id__ = None ;
3715- let mut adaptor_signature__ = None ;
3715+ let mut adaptor_signatures__ = None ;
37163716 while let Some ( k) = map_. next_key ( ) ? {
37173717 match k {
37183718 GeneratedField :: Sender => {
@@ -3727,30 +3727,30 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitRepaymentAdaptorSignature {
37273727 }
37283728 loan_id__ = Some ( map_. next_value ( ) ?) ;
37293729 }
3730- GeneratedField :: AdaptorSignature => {
3731- if adaptor_signature__ . is_some ( ) {
3732- return Err ( serde:: de:: Error :: duplicate_field ( "adaptorSignature " ) ) ;
3730+ GeneratedField :: AdaptorSignatures => {
3731+ if adaptor_signatures__ . is_some ( ) {
3732+ return Err ( serde:: de:: Error :: duplicate_field ( "adaptorSignatures " ) ) ;
37333733 }
3734- adaptor_signature__ = Some ( map_. next_value ( ) ?) ;
3734+ adaptor_signatures__ = Some ( map_. next_value ( ) ?) ;
37353735 }
37363736 }
37373737 }
3738- Ok ( MsgSubmitRepaymentAdaptorSignature {
3738+ Ok ( MsgSubmitRepaymentAdaptorSignatures {
37393739 sender : sender__. unwrap_or_default ( ) ,
37403740 loan_id : loan_id__. unwrap_or_default ( ) ,
3741- adaptor_signature : adaptor_signature__ . unwrap_or_default ( ) ,
3741+ adaptor_signatures : adaptor_signatures__ . unwrap_or_default ( ) ,
37423742 } )
37433743 }
37443744 }
37453745 deserializer. deserialize_struct (
3746- "side.lending.MsgSubmitRepaymentAdaptorSignature " ,
3746+ "side.lending.MsgSubmitRepaymentAdaptorSignatures " ,
37473747 FIELDS ,
37483748 GeneratedVisitor ,
37493749 )
37503750 }
37513751}
37523752#[ cfg( feature = "serde" ) ]
3753- impl serde:: Serialize for MsgSubmitRepaymentAdaptorSignatureResponse {
3753+ impl serde:: Serialize for MsgSubmitRepaymentAdaptorSignaturesResponse {
37543754 #[ allow( deprecated) ]
37553755 fn serialize < S > ( & self , serializer : S ) -> core:: result:: Result < S :: Ok , S :: Error >
37563756 where
@@ -3759,14 +3759,14 @@ impl serde::Serialize for MsgSubmitRepaymentAdaptorSignatureResponse {
37593759 use serde:: ser:: SerializeStruct ;
37603760 let len = 0 ;
37613761 let struct_ser = serializer. serialize_struct (
3762- "side.lending.MsgSubmitRepaymentAdaptorSignatureResponse " ,
3762+ "side.lending.MsgSubmitRepaymentAdaptorSignaturesResponse " ,
37633763 len,
37643764 ) ?;
37653765 struct_ser. end ( )
37663766 }
37673767}
37683768#[ cfg( feature = "serde" ) ]
3769- impl < ' de > serde:: Deserialize < ' de > for MsgSubmitRepaymentAdaptorSignatureResponse {
3769+ impl < ' de > serde:: Deserialize < ' de > for MsgSubmitRepaymentAdaptorSignaturesResponse {
37703770 #[ allow( deprecated) ]
37713771 fn deserialize < D > ( deserializer : D ) -> core:: result:: Result < Self , D :: Error >
37723772 where
@@ -3807,28 +3807,28 @@ impl<'de> serde::Deserialize<'de> for MsgSubmitRepaymentAdaptorSignatureResponse
38073807 }
38083808 struct GeneratedVisitor ;
38093809 impl < ' de > serde:: de:: Visitor < ' de > for GeneratedVisitor {
3810- type Value = MsgSubmitRepaymentAdaptorSignatureResponse ;
3810+ type Value = MsgSubmitRepaymentAdaptorSignaturesResponse ;
38113811
38123812 fn expecting ( & self , formatter : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
38133813 formatter
3814- . write_str ( "struct side.lending.MsgSubmitRepaymentAdaptorSignatureResponse " )
3814+ . write_str ( "struct side.lending.MsgSubmitRepaymentAdaptorSignaturesResponse " )
38153815 }
38163816
38173817 fn visit_map < V > (
38183818 self ,
38193819 mut map_ : V ,
3820- ) -> core:: result:: Result < MsgSubmitRepaymentAdaptorSignatureResponse , V :: Error >
3820+ ) -> core:: result:: Result < MsgSubmitRepaymentAdaptorSignaturesResponse , V :: Error >
38213821 where
38223822 V : serde:: de:: MapAccess < ' de > ,
38233823 {
38243824 while map_. next_key :: < GeneratedField > ( ) ?. is_some ( ) {
38253825 let _ = map_. next_value :: < serde:: de:: IgnoredAny > ( ) ?;
38263826 }
3827- Ok ( MsgSubmitRepaymentAdaptorSignatureResponse { } )
3827+ Ok ( MsgSubmitRepaymentAdaptorSignaturesResponse { } )
38283828 }
38293829 }
38303830 deserializer. deserialize_struct (
3831- "side.lending.MsgSubmitRepaymentAdaptorSignatureResponse " ,
3831+ "side.lending.MsgSubmitRepaymentAdaptorSignaturesResponse " ,
38323832 FIELDS ,
38333833 GeneratedVisitor ,
38343834 )
@@ -6593,7 +6593,7 @@ impl serde::Serialize for Repayment {
65936593 if !self . repay_adaptor_point . is_empty ( ) {
65946594 len += 1 ;
65956595 }
6596- if !self . dca_adaptor_signature . is_empty ( ) {
6596+ if !self . dca_adaptor_signatures . is_empty ( ) {
65976597 len += 1 ;
65986598 }
65996599 if !self . borrower_signature . is_empty ( ) {
@@ -6615,8 +6615,8 @@ impl serde::Serialize for Repayment {
66156615 if !self . repay_adaptor_point . is_empty ( ) {
66166616 struct_ser. serialize_field ( "repayAdaptorPoint" , & self . repay_adaptor_point ) ?;
66176617 }
6618- if !self . dca_adaptor_signature . is_empty ( ) {
6619- struct_ser. serialize_field ( "dcaAdaptorSignature " , & self . dca_adaptor_signature ) ?;
6618+ if !self . dca_adaptor_signatures . is_empty ( ) {
6619+ struct_ser. serialize_field ( "dcaAdaptorSignatures " , & self . dca_adaptor_signatures ) ?;
66206620 }
66216621 if !self . borrower_signature . is_empty ( ) {
66226622 struct_ser. serialize_field ( "borrowerSignature" , & self . borrower_signature ) ?;
@@ -6641,8 +6641,8 @@ impl<'de> serde::Deserialize<'de> for Repayment {
66416641 "tx" ,
66426642 "repay_adaptor_point" ,
66436643 "repayAdaptorPoint" ,
6644- "dca_adaptor_signature " ,
6645- "dcaAdaptorSignature " ,
6644+ "dca_adaptor_signatures " ,
6645+ "dcaAdaptorSignatures " ,
66466646 "borrower_signature" ,
66476647 "borrowerSignature" ,
66486648 "create_at" ,
@@ -6655,7 +6655,7 @@ impl<'de> serde::Deserialize<'de> for Repayment {
66556655 Txid ,
66566656 Tx ,
66576657 RepayAdaptorPoint ,
6658- DcaAdaptorSignature ,
6658+ DcaAdaptorSignatures ,
66596659 BorrowerSignature ,
66606660 CreateAt ,
66616661 }
@@ -6689,8 +6689,8 @@ impl<'de> serde::Deserialize<'de> for Repayment {
66896689 "repayAdaptorPoint" | "repay_adaptor_point" => {
66906690 Ok ( GeneratedField :: RepayAdaptorPoint )
66916691 }
6692- "dcaAdaptorSignature " | "dca_adaptor_signature " => {
6693- Ok ( GeneratedField :: DcaAdaptorSignature )
6692+ "dcaAdaptorSignatures " | "dca_adaptor_signatures " => {
6693+ Ok ( GeneratedField :: DcaAdaptorSignatures )
66946694 }
66956695 "borrowerSignature" | "borrower_signature" => {
66966696 Ok ( GeneratedField :: BorrowerSignature )
@@ -6719,7 +6719,7 @@ impl<'de> serde::Deserialize<'de> for Repayment {
67196719 let mut txid__ = None ;
67206720 let mut tx__ = None ;
67216721 let mut repay_adaptor_point__ = None ;
6722- let mut dca_adaptor_signature__ = None ;
6722+ let mut dca_adaptor_signatures__ = None ;
67236723 let mut borrower_signature__ = None ;
67246724 let mut create_at__ = None ;
67256725 while let Some ( k) = map_. next_key ( ) ? {
@@ -6748,13 +6748,13 @@ impl<'de> serde::Deserialize<'de> for Repayment {
67486748 }
67496749 repay_adaptor_point__ = Some ( map_. next_value ( ) ?) ;
67506750 }
6751- GeneratedField :: DcaAdaptorSignature => {
6752- if dca_adaptor_signature__ . is_some ( ) {
6751+ GeneratedField :: DcaAdaptorSignatures => {
6752+ if dca_adaptor_signatures__ . is_some ( ) {
67536753 return Err ( serde:: de:: Error :: duplicate_field (
6754- "dcaAdaptorSignature " ,
6754+ "dcaAdaptorSignatures " ,
67556755 ) ) ;
67566756 }
6757- dca_adaptor_signature__ = Some ( map_. next_value ( ) ?) ;
6757+ dca_adaptor_signatures__ = Some ( map_. next_value ( ) ?) ;
67586758 }
67596759 GeneratedField :: BorrowerSignature => {
67606760 if borrower_signature__. is_some ( ) {
@@ -6775,7 +6775,7 @@ impl<'de> serde::Deserialize<'de> for Repayment {
67756775 txid : txid__. unwrap_or_default ( ) ,
67766776 tx : tx__. unwrap_or_default ( ) ,
67776777 repay_adaptor_point : repay_adaptor_point__. unwrap_or_default ( ) ,
6778- dca_adaptor_signature : dca_adaptor_signature__ . unwrap_or_default ( ) ,
6778+ dca_adaptor_signatures : dca_adaptor_signatures__ . unwrap_or_default ( ) ,
67796779 borrower_signature : borrower_signature__. unwrap_or_default ( ) ,
67806780 create_at : create_at__,
67816781 } )
0 commit comments