Skip to content

Commit 7e03432

Browse files
committed
Merge #193: Remove unused generic
7bdabff Remove unused generic (Tobin C. Harding) Pull request description: Just patch 2, draft until #192 goes in. Turns out `clippy` does not warn for unused generics. Fix: #191 ACKs for top commit: apoelstra: ACK 7bdabff successfully ran local tests; note that this is technically a breaking change Tree-SHA512: 42fe88f886f053eaf6d68128cee9cb0f20a94afdd46dfca7bc2326726a9c2a6d010905ee97f1d2c0f13bcf620acfba1cb5463a48989c5e88f580def22ee9e5da
2 parents aa9de8f + 7bdabff commit 7e03432

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
@@ -442,7 +442,7 @@ impl<'s> CheckedHrpstring<'s> {
442442
///
443443
/// Converts the ASCII bytes representing field elements to the respective field elements.
444444
#[inline]
445-
pub fn fe32_iter<I: Iterator<Item = u8>>(&self) -> AsciiToFe32Iter {
445+
pub fn fe32_iter(&self, _: u8) -> AsciiToFe32Iter {
446446
AsciiToFe32Iter { iter: self.ascii.iter().copied() }
447447
}
448448

0 commit comments

Comments
 (0)