Merge rust-bitcoin/rust-bitcoin#4386: fix typo in serialized_signature.rs

3c6f45294b fix typo in serialized_signature.rs (Bilog WEB3)

Pull request description:

  `signtature` --> `signature` --fix typo

ACKs for top commit:
  apoelstra:
    ACK 3c6f45294bf3dcb7110bd60cb589241219bccc1a; successfully ran local tests

Tree-SHA512: c0d93efc95397eb6b817906ceef02083b529ef0f8b2d13afa675710d5ef78850dbcdc0e42f05a2956ba2949eb792cc92ff37359a540d246affec1f9604a44e1c
This commit is contained in:
merge-script 2025-04-24 19:40:12 +00:00
commit aadea3eeb2
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ mod into_iter {
self.pos = self.signature.len(); self.pos = self.signature.len();
None None
} else { } 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 // overflows nor breaks the invariant
self.pos += n; self.pos += n;
self.next() self.next()