Pārlūkot izejas kodu

debug err removed

obscuren 10 gadi atpakaļ
vecāks
revīzija
705cf6113d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      trie/encoding.go

+ 1 - 1
trie/encoding.go

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