Skip to content

Commit 4f1359d

Browse files
authored
Merge pull request #1920 from strmfos/master
BIP374: remove debug print from test runner
2 parents e97c908 + 1421be4 commit 4f1359d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

bip-0374/run_test_vectors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
next(reader)
2424
for row in reader:
2525
(index, point_G_hex, seckey_a_hex, point_B_hex, aux_rand_hex, msg_hex, result_str, comment) = row
26-
print(seckey_a_hex)
2726
G = GE() if point_G_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_G_hex))
2827
a = int.from_bytes(bytes.fromhex(seckey_a_hex), 'big')
2928
B = GE() if point_B_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_B_hex))

0 commit comments

Comments
 (0)