fix accidental find and replace fail

This commit is contained in:
Jeromy 2016-03-28 20:16:52 -07:00
parent e0edada87e
commit 630728c3c5

View File

@ -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:]
}