summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark "Murch" Erhardt <murch@murch.one>2024-06-10 13:31:04 -0400
committerGitHub <noreply@github.com>2024-06-10 13:31:04 -0400
commit1f8ce57410a0de51017919447829eaca2081a350 (patch)
treec7f47fbaf02f8aa9594355c0c93ebdce94746e4e
parent9cfe3a4a9021d893859af4517ab6cb6f5d6c387e (diff)
parent44984acde9786ce5722cf2dc298e7ef407a4d445 (diff)
downloadbips-1f8ce57410a0de51017919447829eaca2081a350.tar.xz
Merge pull request #1615 from satsie/satsie-more-repeat-words
BIP340: remove repeat words
-rw-r--r--bip-0340/test-vectors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bip-0340/test-vectors.py b/bip-0340/test-vectors.py
index 9a5a140..5a131c4 100644
--- a/bip-0340/test-vectors.py
+++ b/bip-0340/test-vectors.py
@@ -24,14 +24,14 @@ def vector0():
assert(y(P) % 2 == 0)
# For historical reasons (pubkey tiebreaker was squareness and not evenness)
- # we should have at least one test vector where the the point reconstructed
+ # we should have at least one test vector where the point reconstructed
# from the public key has a square and one where it has a non-square Y
# coordinate. In this one Y is non-square.
pubkey_point = lift_x(pubkey)
assert(not has_square_y(pubkey_point))
# For historical reasons (R tiebreaker was squareness and not evenness)
- # we should have at least one test vector where the the point reconstructed
+ # we should have at least one test vector where the point reconstructed
# from the R.x coordinate has a square and one where it has a non-square Y
# coordinate. In this one Y is non-square.
R = lift_x(sig[0:32])