Skip to content

Commit 17de3da

Browse files
author
Hugh Cunningham
committed
fixes InvalidInput strings in round3
1 parent 1bd3a74 commit 17de3da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dkg/round3.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ where
145145

146146
#[cfg(not(feature = "std"))]
147147
return Err(IronfishFrostError::InvalidInput(
148-
"incorrect number of round 1 public packages",
148+
"incorrect number of round 1 public packages".to_string(),
149149
));
150150
}
151151

@@ -160,7 +160,7 @@ where
160160

161161
#[cfg(not(feature = "std"))]
162162
return Err(IronfishFrostError::InvalidInput(
163-
"incorrect number of round 2 public packages",
163+
"incorrect number of round 2 public packages".to_string(),
164164
));
165165
}
166166

0 commit comments

Comments
 (0)