obscuren před 10 roky
rodič
revize
705cf6113d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)
 }