diff options
author | Stacie <staciewaleyko@gmail.com> | 2024-06-09 21:56:51 -0400 |
---|---|---|
committer | Stacie <staciewaleyko@gmail.com> | 2024-06-09 21:56:51 -0400 |
commit | 44984acde9786ce5722cf2dc298e7ef407a4d445 (patch) | |
tree | b5708f07c56fa13a4019e55366090dc90b4fb3ac /bip-0340 | |
parent | bc520fade5cc838d5c6e9b72d2fc12b691c80125 (diff) |
BIP340: remove repeat words
Diffstat (limited to 'bip-0340')
-rw-r--r-- | bip-0340/test-vectors.py | 4 |
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]) |