Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime committed Aug 13, 2024
1 parent d63386d commit 64c7796
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/starknet/groth16_contract_generator/parsing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def try_parse_g1_point_from_key(
data: dict, key_patterns: List[str], curve_id: CurveID = None
) -> G1Point:
point = find_item_from_key_patterns(data, key_patterns)
# print(point)
return try_parse_g1_point(point, curve_id)


Expand Down Expand Up @@ -221,8 +220,6 @@ def from_json(
try:
with path.open("r") as f:
data = json.load(f)
print(data, "\n")
print(data.keys())
curve_id = CurveID.from_str(find_item_from_key_patterns(data, ["curve"]))
try:
proof = find_item_from_key_patterns(data, ["proof"])
Expand Down

0 comments on commit 64c7796

Please sign in to comment.