Skip to content

Commit

Permalink
Fix lite mode import (0xSpaceShard#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikiw committed Sep 21, 2022
1 parent e2ddfc0 commit 19b1ecb
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,6 @@ jobs:
- run:
name: Push images
command: ./scripts/image_push.sh
environment:
ARCH_SUFFIX: -arm
REMOTE: ""

workflows:
version: 2
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
get_contract_class,
)

from lite_mode.lite_starknet_state import LiteStarknetState
from .lite_starknet_state import LiteStarknetState

CastableToAddressSalt = Union[str, int]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from starkware.starknet.services.api.contract_class import ContractClass
from starkware.starknet.business_logic.execution.objects import TransactionExecutionInfo

from lite_mode.lite_internal_deploy import LiteInternalDeploy
from .lite_internal_deploy import LiteInternalDeploy

CastableToAddressSalt = Union[str, int]

Expand Down
4 changes: 2 additions & 2 deletions starknet_devnet/starknet_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
from starknet_devnet.util import to_bytes
from starknet_devnet.constants import DUMMY_STATE_ROOT

from lite_mode.lite_internal_deploy import LiteInternalDeploy
from lite_mode.lite_starknet import LiteStarknet
from .lite_mode.lite_internal_deploy import LiteInternalDeploy
from .lite_mode.lite_starknet import LiteStarknet

from .accounts import Accounts
from .blueprints.rpc.structures.types import Felt
Expand Down

0 comments on commit 19b1ecb

Please sign in to comment.