From e09bd015a4c7dfc3045852db24e05f219c490cdb Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Thu, 1 Feb 2024 13:53:26 +0100 Subject: [PATCH] Revert changes --- requirements.in | 2 +- requirements.txt | 2 +- scripts/deployment_utils.py | 2 +- tests/fixtures/deployments.py | 2 +- tests/fixtures/functions.py | 2 +- tests/utils.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.in b/requirements.in index e73986c..12a8a59 100644 --- a/requirements.in +++ b/requirements.in @@ -1,4 +1,4 @@ -titanoboa[forking-recommended] @ git+https://github.com/vyperlang/titanoboa@1bf58c3 +titanoboa[forking-recommended] @ git+https://github.com/vyperlang/titanoboa@e85ab24 black flake8 isort diff --git a/requirements.txt b/requirements.txt index 53e72d5..9e3c05c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -188,7 +188,7 @@ sortedcontainers==2.4.0 # trie tabulate==0.9.0 # via -r requirements.in -titanoboa[forking-recommended] @ git+https://github.com/vyperlang/titanoboa@1bf58c3 +titanoboa[forking-recommended] @ git+https://github.com/vyperlang/titanoboa@e85ab24 # via -r requirements.in tomli==2.0.1 # via diff --git a/scripts/deployment_utils.py b/scripts/deployment_utils.py index 67fac8d..e894cd6 100644 --- a/scripts/deployment_utils.py +++ b/scripts/deployment_utils.py @@ -2,8 +2,8 @@ from os import environ, path import boa -from boa.contracts.vyper.vyper_contract import VyperContract from boa.network import NetworkEnv +from boa.vyper.contract import VyperContract from eth_account import Account from rich.console import Console as RichConsole diff --git a/tests/fixtures/deployments.py b/tests/fixtures/deployments.py index 38710ff..576d712 100644 --- a/tests/fixtures/deployments.py +++ b/tests/fixtures/deployments.py @@ -1,6 +1,6 @@ import boa import pytest -from boa.contracts.vyper.vyper_contract import VyperContract +from boa.vyper.contract import VyperContract from scripts.deployment_utils import get_deployed_contract from tests.utils import deploy_contract diff --git a/tests/fixtures/functions.py b/tests/fixtures/functions.py index 1018bdb..904a0c1 100644 --- a/tests/fixtures/functions.py +++ b/tests/fixtures/functions.py @@ -1,7 +1,7 @@ from typing import Callable import pytest -from boa.contracts.vyper.vyper_contract import VyperContract +from boa.vyper.contract import VyperContract from scripts.deployment_utils import get_deployed_contract diff --git a/tests/utils.py b/tests/utils.py index 940e239..f8d6a55 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -2,7 +2,7 @@ from typing import Union import boa -from boa.contracts.vyper.vyper_contract import VyperContract +from boa.vyper.contract import VyperContract from eth.codecs.abi.exceptions import DecodeError as ABIDecodeError from eth_account.signers.local import LocalAccount