From 90a6977bd93045010a8f26182f6ac97aa6df8a48 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Mon, 28 Mar 2016 20:16:52 -0700 Subject: [PATCH] fix accidental find and replace fail --- p2p/peer/peer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/peer/peer.go b/p2p/peer/peer.go index dc529cf3..41126dce 100644 --- a/p2p/peer/peer.go +++ b/p2p/peer/peer.go @@ -41,7 +41,7 @@ func (id ID) String() string { //All sha256 nodes start with Qm //We can skip the Qm to make the peer.ID more useful - if strings.HasPrefix(pid, "gx/Qm") { + if strings.HasPrefix(pid, "Qm") { pid = pid[2:] }