mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
fix: ignore peer id derivation for quic dial
This commit is contained in:
@ -260,7 +260,9 @@ class QUICTransport(ITransport):
|
||||
remote_peer_id = ID.from_base58(remote_peer_id)
|
||||
|
||||
if remote_peer_id is None:
|
||||
raise QUICDialError("Unable to derive peer id from multiaddr")
|
||||
# TODO: Peer ID verification during dial
|
||||
logger.error("Unable to derive peer id from multiaddr")
|
||||
# raise QUICDialError("Unable to derive peer id from multiaddr")
|
||||
quic_version = multiaddr_to_quic_version(maddr)
|
||||
|
||||
# Get appropriate QUIC client configuration
|
||||
|
||||
Reference in New Issue
Block a user