@@ -53,10 +53,7 @@ pub struct ErroneousField {
53
53
impl InvoiceError {
54
54
/// Creates an [`InvoiceError`] with the given message.
55
55
pub fn from_string ( s : String ) -> Self {
56
- Self {
57
- erroneous_field : None ,
58
- message : UntrustedString ( s) ,
59
- }
56
+ Self { erroneous_field : None , message : UntrustedString ( s) }
60
57
}
61
58
}
62
59
@@ -107,10 +104,7 @@ impl Readable for InvoiceError {
107
104
108
105
impl From < Bolt12SemanticError > for InvoiceError {
109
106
fn from ( error : Bolt12SemanticError ) -> Self {
110
- InvoiceError {
111
- erroneous_field : None ,
112
- message : UntrustedString ( format ! ( "{:?}" , error) ) ,
113
- }
107
+ InvoiceError { erroneous_field : None , message : UntrustedString ( format ! ( "{:?}" , error) ) }
114
108
}
115
109
}
116
110
@@ -120,10 +114,7 @@ impl From<SignError> for InvoiceError {
120
114
SignError :: Signing => "Failed signing invoice" ,
121
115
SignError :: Verification ( _) => "Failed invoice signature verification" ,
122
116
} ;
123
- InvoiceError {
124
- erroneous_field : None ,
125
- message : UntrustedString ( message. to_string ( ) ) ,
126
- }
117
+ InvoiceError { erroneous_field : None , message : UntrustedString ( message. to_string ( ) ) }
127
118
}
128
119
}
129
120
@@ -132,7 +123,9 @@ mod tests {
132
123
use super :: { ErroneousField , InvoiceError } ;
133
124
134
125
use crate :: ln:: msgs:: DecodeError ;
135
- use crate :: util:: ser:: { HighZeroBytesDroppedBigSize , Readable , VecWriter , WithoutLength , Writeable } ;
126
+ use crate :: util:: ser:: {
127
+ HighZeroBytesDroppedBigSize , Readable , VecWriter , WithoutLength , Writeable ,
128
+ } ;
136
129
use crate :: util:: string:: UntrustedString ;
137
130
138
131
#[ test]
@@ -149,7 +142,7 @@ mod tests {
149
142
Ok ( invoice_error) => {
150
143
assert_eq ! ( invoice_error. message, UntrustedString ( "Invalid value" . to_string( ) ) ) ;
151
144
assert_eq ! ( invoice_error. erroneous_field, None ) ;
152
- }
145
+ } ,
153
146
Err ( e) => panic ! ( "Unexpected error: {:?}" , e) ,
154
147
}
155
148
}
@@ -174,7 +167,7 @@ mod tests {
174
167
invoice_error. erroneous_field,
175
168
Some ( ErroneousField { tlv_fieldnum: 42 , suggested_value: Some ( vec![ 42 ; 32 ] ) } ) ,
176
169
) ;
177
- }
170
+ } ,
178
171
Err ( e) => panic ! ( "Unexpected error: {:?}" , e) ,
179
172
}
180
173
}
@@ -183,10 +176,7 @@ mod tests {
183
176
fn parses_invoice_error_without_suggested_value ( ) {
184
177
let mut writer = VecWriter ( Vec :: new ( ) ) ;
185
178
let invoice_error = InvoiceError {
186
- erroneous_field : Some ( ErroneousField {
187
- tlv_fieldnum : 42 ,
188
- suggested_value : None ,
189
- } ) ,
179
+ erroneous_field : Some ( ErroneousField { tlv_fieldnum : 42 , suggested_value : None } ) ,
190
180
message : UntrustedString ( "Invalid value" . to_string ( ) ) ,
191
181
} ;
192
182
invoice_error. write ( & mut writer) . unwrap ( ) ;
@@ -199,7 +189,7 @@ mod tests {
199
189
invoice_error. erroneous_field,
200
190
Some ( ErroneousField { tlv_fieldnum: 42 , suggested_value: None } ) ,
201
191
) ;
202
- }
192
+ } ,
203
193
Err ( e) => panic ! ( "Unexpected error: {:?}" , e) ,
204
194
}
205
195
}
0 commit comments