From 1421be407e93fe364850cace8126553ef19a2406 Mon Sep 17 00:00:00 2001 From: strmfos <155266597+strmfos@users.noreply.github.com> Date: Sat, 9 Aug 2025 19:17:39 +0200 Subject: [PATCH] BIP374: remove debug print statement from BIP-374 test runner --- bip-0374/run_test_vectors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bip-0374/run_test_vectors.py b/bip-0374/run_test_vectors.py index 53e5e2dc..4831fbe2 100755 --- a/bip-0374/run_test_vectors.py +++ b/bip-0374/run_test_vectors.py @@ -23,7 +23,6 @@ with open(FILENAME_GENERATE_PROOF_TEST, newline='') as csvfile: next(reader) for row in reader: (index, point_G_hex, seckey_a_hex, point_B_hex, aux_rand_hex, msg_hex, result_str, comment) = row - print(seckey_a_hex) G = GE() if point_G_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_G_hex)) a = int.from_bytes(bytes.fromhex(seckey_a_hex), 'big') B = GE() if point_B_hex == 'INFINITY' else GE.from_bytes(bytes.fromhex(point_B_hex))