stream_processors.{ethereum_transaction -> ethereum_blockchain}

pull/105/head
Neeraj Kashyap 2021-08-13 15:19:36 -07:00
rodzic f10db1695e
commit 13b8e3bfe7
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ from moonstreamdb import db
from sqlalchemy.orm import Session
from ..stream_processors import ethereum_transaction
from ..stream_processors import ethereum_blockchain
from .. import data
from ..middleware import BroodAuthMiddleware
from ..settings import (
@ -96,7 +96,7 @@ async def search_transactions(
)
if address_to_subscriptions:
response = await ethereum_transaction.get_transaction_in_blocks(
response = await ethereum_blockchain.get_transaction_in_blocks(
db_session=db_session,
query=q,
user_subscriptions_resources_by_address=address_to_subscriptions,