From 3c6f45294bf3dcb7110bd60cb589241219bccc1a Mon Sep 17 00:00:00 2001 From: Bilog WEB3 <155262265+Bilogweb3@users.noreply.github.com> Date: Tue, 22 Apr 2025 16:15:02 +0200 Subject: [PATCH] fix typo in serialized_signature.rs --- bitcoin/src/taproot/serialized_signature.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/taproot/serialized_signature.rs b/bitcoin/src/taproot/serialized_signature.rs index be388e2c3..a63af0fe2 100644 --- a/bitcoin/src/taproot/serialized_signature.rs +++ b/bitcoin/src/taproot/serialized_signature.rs @@ -230,7 +230,7 @@ mod into_iter { self.pos = self.signature.len(); None } else { - // if n < signtature.len() - self.pos then n + self.pos < signature.len() which neither + // if n < signature.len() - self.pos then n + self.pos < signature.len() which neither // overflows nor breaks the invariant self.pos += n; self.next()