summaryrefslogtreecommitdiff
path: root/bip-0340/test-vectors.py
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2020-04-02 16:34:24 -0700
committerGitHub <noreply@github.com>2020-04-02 16:34:24 -0700
commit038615b7c7eb44d47c41261565ef54cdbc1d9f05 (patch)
treea220f40bd9543f26a584197eda9f494e09289806 /bip-0340/test-vectors.py
parent39ba507e01cbae43ff32f1f3c993c74719b18873 (diff)
parent72657270d8e4d6ef193878f1e743301edfae0e31 (diff)
downloadbips-038615b7c7eb44d47c41261565ef54cdbc1d9f05.tar.xz
Merge pull request #200 from real-or-random/prints
Add debug print for intermediate values
Diffstat (limited to 'bip-0340/test-vectors.py')
-rw-r--r--bip-0340/test-vectors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-0340/test-vectors.py b/bip-0340/test-vectors.py
index d1a52c8..9c029ec 100644
--- a/bip-0340/test-vectors.py
+++ b/bip-0340/test-vectors.py
@@ -15,7 +15,7 @@ def vector0():
P = point_mul(G, x)
assert(y(P) % 2 == 0)
- # For historic reasons (pubkey tiebreaker was squareness and not evenness)
+ # For historical reasons (pubkey tiebreaker was squareness and not evenness)
# we should have at least one test vector where the 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.