Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Spit and polish
  • Loading branch information
rozhkovdmitrii committed Apr 10, 2022
commit c851c554ccbb9b7ef3688e4d1870e7acc5238a7d
6 changes: 3 additions & 3 deletions proxy/mempool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# from .mempool_service import MemPoolService
# from .mempool_client import MemPoolClient
# from .mem_pool import MemPool
from .mempool_service import MemPoolService
from .mempool_client import MemPoolClient
from .mem_pool import MemPool
2 changes: 1 addition & 1 deletion proxy/mempool/mempool_client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from proxy.common_neon.utils import QueueBasedServiceClient
from logged_groups import logged_group
from .mempool_service import MemPoolService
from . import MemPoolService


@logged_group("neon")
Expand Down
2 changes: 1 addition & 1 deletion proxy/plugin/solana_rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from ..common_neon.estimate import GasEstimate
from ..common_neon.utils import SolanaBlockInfo
from ..common_neon.keys_storage import KeyStorage
from ..mempool.mempool_client import MemPoolClient
from ..mempool import MemPoolClient
from ..environment import SOLANA_URL, PP_SOLANA_URL, PYTH_MAPPING_ACCOUNT, EVM_STEP_COUNT, CHAIN_ID, ENABLE_PRIVATE_API
from ..environment import NEON_EVM_VERSION, NEON_EVM_REVISION
from ..environment import neon_cli
Expand Down