Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 7b2e248

Browse files
committed
Update utils.py
1 parent d7cd8d9 commit 7b2e248

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from collections import namedtuple
33
from pathlib import Path
44
import math
5+
import asyncio
56
import site
67
from starkware.cairo.common.hash_state import compute_hash_on_elements
78
from starkware.crypto.signature.signature import private_to_stark_key, sign
@@ -11,6 +12,7 @@
1112
from starkware.starkware_utils.error_handling import StarkException
1213
from starkware.starknet.testing.starknet import StarknetContract
1314
from starkware.starknet.business_logic.execution.objects import Event
15+
from starkware.crypto.signature.fast_pedersen_hash import pedersen_hash
1416

1517
MAX_UINT256 = (2 ** 128 - 1, 2 ** 128 - 1)
1618
INVALID_UINT256 = (MAX_UINT256[0] + 1, MAX_UINT256[1])

0 commit comments

Comments
 (0)