From b7c2ec2187976e4f961c69884d09d0d049cf58e0 Mon Sep 17 00:00:00 2001 From: mhchia Date: Wed, 5 Feb 2020 21:31:04 +0800 Subject: [PATCH] Mplex: change the reference url To the commit hash, to make it more correct. --- libp2p/stream_muxer/mplex/mplex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libp2p/stream_muxer/mplex/mplex.py b/libp2p/stream_muxer/mplex/mplex.py index 5b1df77d..ddeb41f4 100644 --- a/libp2p/stream_muxer/mplex/mplex.py +++ b/libp2p/stream_muxer/mplex/mplex.py @@ -23,7 +23,7 @@ from .exceptions import MplexUnavailable from .mplex_stream import MplexStream MPLEX_PROTOCOL_ID = TProtocol("/mplex/6.7.0") -# Ref: https://github.com/libp2p/go-mplex/blob/master/multiplex.go#L115 +# Ref: https://github.com/libp2p/go-mplex/blob/414db61813d9ad3e6f4a7db5c1b1612de343ace9/multiplex.go#L115 # noqa: E501 MPLEX_MESSAGE_CHANNEL_SIZE = 8 logger = logging.getLogger("libp2p.stream_muxer.mplex.mplex")