Browse Source

debug err removed

obscuren 10 years ago
parent
commit
705cf6113d
1 changed files with 1 additions and 1 deletions
  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)
 	return string(res)
 }
 }