Skip to content

Commit

Permalink
Move contract_common to contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 committed Sep 5, 2023
1 parent 6417911 commit df0fe83
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion gnosis/safe/proxy_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from web3 import Web3

from gnosis.eth import EthereumClient, EthereumTxSent
from gnosis.eth.contract_common import ContractCommon
from gnosis.eth.contracts import (
get_paying_proxy_deployed_bytecode,
get_proxy_1_0_0_deployed_bytecode,
Expand All @@ -16,6 +15,7 @@
get_proxy_factory_V1_1_1_contract,
get_proxy_factory_V1_3_0_contract,
)
from gnosis.eth.contracts.contract_common import ContractCommon
from gnosis.eth.utils import compare_byte_code, fast_is_checksum_address
from gnosis.util import cache

Expand Down
2 changes: 1 addition & 1 deletion gnosis/safe/safe.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
get_safe_V1_1_1_contract,
get_safe_V1_3_0_contract,
)
from gnosis.eth.contracts.contract_common import ContractCommon
from gnosis.eth.utils import (
fast_bytes_to_checksum_address,
fast_is_checksum_address,
Expand All @@ -36,7 +37,6 @@
)
from gnosis.safe.proxy_factory import ProxyFactory

from ..eth.contract_common import ContractCommon
from ..eth.typing import EthereumData
from .exceptions import (
CannotEstimateGas,
Expand Down

0 comments on commit df0fe83

Please sign in to comment.