Skip to content

Commit a86da1e

Browse files
committed
Merge #235: Remove unused argument on CheckedHrpstring::fe32_iter
6487797 Remove unused argument on CheckedHrpstring::fe32_iter (Tobin C. Harding) Pull request description: 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 ... ACKs for top commit: apoelstra: ACK 6487797; successfully ran local tests; lol let's get this in Tree-SHA512: 4e4e7b0a6a93821194ec2e1fa118faf7f0f91ba1fe7a2975e4e2be73bede0dcca7128749adebbeb31d3018653ccbe0930f8761bb412207a79fb0dcd854d20912
2 parents 46949c9 + 6487797 commit a86da1e

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)