From 8a30b297a8dcedad3229de416ee3ea9e5fe0749a Mon Sep 17 00:00:00 2001 From: lash Date: Thu, 21 Apr 2022 09:20:06 +0000 Subject: [PATCH] Rehabilitate gas filter --- tests/conftest.py | 1 + tests/test_gas_filter.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 2a5d6e8..946726a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,4 +5,5 @@ from cic_eth.pytest.fixtures_database import * from cic_eth.pytest.fixtures_contract import * from cic_eth.pytest.fixtures_config import * from cic_eth.pytest.fixtures_token import * +from cic_eth.pytest.fixtures_celery import * from chainlib.eth.pytest import * diff --git a/tests/test_gas_filter.py b/tests/test_gas_filter.py index 9d58b44..8b3722a 100644 --- a/tests/test_gas_filter.py +++ b/tests/test_gas_filter.py @@ -24,13 +24,13 @@ from chainqueue.sql.state import ( from hexathon import strip_0x from chainqueue.db.models.otx import Otx from chainqueue.db.enum import StatusBits - -# local imports -from cic_eth.runnable.daemons.filters.gas import GasFilter from cic_eth.eth.gas import cache_gas_data from cic_eth.encode import tx_normalize from cic_eth.queue.tx import queue_create +# local imports +from cic_sync_filter.gas import GasFilter + logg = logging.getLogger()