debug err removed

This commit is contained in:
obscuren 2015-01-29 23:18:46 +01:00
parent 9022f5034f
commit 705cf6113d

View File

@ -70,7 +70,7 @@ func DecodeCompact(key []byte) string {
} }
} }
res, err := hex.DecodeString(str) res, _ := hex.DecodeString(str)
return string(res) return string(res)
} }