Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
File renamed without changes.
2 changes: 1 addition & 1 deletion hathor/p2p/sync_v2/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from hathor.p2p.manager import ConnectionsManager
from hathor.p2p.sync_agent import SyncAgent
from hathor.p2p.sync_factory import SyncAgentFactory
from hathor.p2p.sync_v2.manager import NodeBlockSync
from hathor.p2p.sync_v2.agent import NodeBlockSync
from hathor.util import Reactor

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion hathor/p2p/sync_v2/mempool.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from hathor.transaction import BaseTransaction

if TYPE_CHECKING:
from hathor.p2p.sync_v2.manager import NodeBlockSync
from hathor.p2p.sync_v2.agent import NodeBlockSync

logger = get_logger()

Expand Down
2 changes: 1 addition & 1 deletion hathor/p2p/sync_v2/streamers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

if TYPE_CHECKING:
from hathor.p2p.protocol import HathorProtocol
from hathor.p2p.sync_v2.manager import NodeBlockSync
from hathor.p2p.sync_v2.agent import NodeBlockSync

logger = get_logger()

Expand Down
2 changes: 1 addition & 1 deletion tests/p2p/test_capabilities.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from hathor.conf import HathorSettings
from hathor.p2p.sync_v1.agent import NodeSyncTimestamp
from hathor.p2p.sync_v2.manager import NodeBlockSync
from hathor.p2p.sync_v2.agent import NodeBlockSync
from hathor.simulator import FakeConnection
from tests import unittest

Expand Down