Skip to content

Commit 6487797

Browse files
committed
Remove unused argument on CheckedHrpstring::fe32_iter
This is Steven's work in the now very old #220. Its a one line change so just pick it up and push it in. FTR no one knows how or why this is here. Its probably my fault ...
1 parent b7fab3a commit 6487797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/primitives/decode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ impl<'s> CheckedHrpstring<'s> {
444444
///
445445
/// Converts the ASCII bytes representing field elements to the respective field elements.
446446
#[inline]
447-
pub fn fe32_iter(&self, _: u8) -> AsciiToFe32Iter<'_> {
447+
pub fn fe32_iter(&self) -> AsciiToFe32Iter<'_> {
448448
AsciiToFe32Iter { iter: self.ascii.iter().copied() }
449449
}
450450

0 commit comments

Comments
 (0)