fix accidental find and replace fail

This commit is contained in:
Jeromy 2016-03-28 20:16:52 -07:00
parent c9ef94cc04
commit 90a6977bd9
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func (id ID) String() string {
//All sha256 nodes start with Qm //All sha256 nodes start with Qm
//We can skip the Qm to make the peer.ID more useful //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:] pid = pid[2:]
} }