@@ -145,7 +145,7 @@ where
145
145
146
146
#[ cfg( not( feature = "std" ) ) ]
147
147
return Err ( IronfishFrostError :: InvalidInput (
148
- "incorrect number of round 1 public packages" ,
148
+ "incorrect number of round 1 public packages" . to_string ( ) ,
149
149
) ) ;
150
150
}
151
151
@@ -160,7 +160,7 @@ where
160
160
161
161
#[ cfg( not( feature = "std" ) ) ]
162
162
return Err ( IronfishFrostError :: InvalidInput (
163
- "incorrect number of round 2 public packages" ,
163
+ "incorrect number of round 2 public packages" . to_string ( ) ,
164
164
) ) ;
165
165
}
166
166
@@ -196,7 +196,7 @@ where
196
196
197
197
#[ cfg( not( feature = "std" ) ) ]
198
198
return Err ( IronfishFrostError :: InvalidInput (
199
- "multiple round 1 public packages provided for an identity" ,
199
+ "multiple round 1 public packages provided for an identity" . to_string ( ) ,
200
200
) ) ;
201
201
}
202
202
@@ -238,7 +238,7 @@ where
238
238
239
239
#[ cfg( not( feature = "std" ) ) ]
240
240
return Err ( IronfishFrostError :: InvalidInput (
241
- "round 2 public package does not have the correct recipient identity" ,
241
+ "round 2 public package does not have the correct recipient identity" . to_string ( ) ,
242
242
) ) ;
243
243
}
244
244
0 commit comments