File tree Expand file tree Collapse file tree 3 files changed +465
-466
lines changed Expand file tree Collapse file tree 3 files changed +465
-466
lines changed Original file line number Diff line number Diff line change @@ -253,17 +253,17 @@ def debug_print(msg):
253
253
for test_case in tprov .make_cases ():
254
254
# If preset list is assigned, filter by presets.
255
255
if len (presets ) != 0 and test_case .preset_name not in presets :
256
- print (f"Skipped: { get_test_identifier (test_case )} " )
256
+ debug_print (f"Skipped: { get_test_identifier (test_case )} " )
257
257
continue
258
258
259
259
# If fork list is assigned, filter by forks.
260
260
if len (forks ) != 0 and test_case .fork_name not in forks :
261
- print (f"Skipped: { get_test_identifier (test_case )} " )
261
+ debug_print (f"Skipped: { get_test_identifier (test_case )} " )
262
262
continue
263
263
264
264
# If cases list is assigned, filter by cases.
265
- if len (cases ) != 0 and test_case .case_name not in cases :
266
- print (f"Skipped: { get_test_identifier (test_case )} " )
265
+ if len (cases ) != 0 and not any ( s in test_case .case_name for s in cases ) :
266
+ debug_print (f"Skipped: { get_test_identifier (test_case )} " )
267
267
continue
268
268
269
269
print (f"Collected: { get_test_identifier (test_case )} " )
Original file line number Diff line number Diff line change @@ -144,10 +144,6 @@ def evaluate_blob_at(blob, z):
144
144
BLOB_INVALID_LENGTH_MINUS_ONE ,
145
145
]
146
146
147
- # Commitments
148
-
149
- VALID_COMMITMENTS = [spec .blob_to_kzg_commitment (blob ) for blob in VALID_BLOBS ]
150
-
151
147
# Points
152
148
153
149
G1 = bls .G1_to_bytes48 (bls .G1 ())
You can’t perform that action at this time.
0 commit comments