From 8349e509431822bc40423452589dbcdedd08f1c0 Mon Sep 17 00:00:00 2001 From: Yusef Napora Date: Wed, 11 Dec 2019 16:18:19 -0500 Subject: [PATCH] fix protocol id string --- p2p/security/noise/transport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/security/noise/transport.go b/p2p/security/noise/transport.go index 3bb6ee13b1..0a97e546bc 100644 --- a/p2p/security/noise/transport.go +++ b/p2p/security/noise/transport.go @@ -13,7 +13,7 @@ import ( ) // ID is the protocol ID for noise -const ID = "/noise/0.0.1" +const ID = "/noise" var _ sec.SecureTransport = &Transport{}