diff --git a/encoding.go b/encoding.go
index ca30b47c9a62640f7f0e21246f94a2ca5f25cb59..d77303817b0051c1c754919017b6c50feb27f0e0 100644
--- a/encoding.go
+++ b/encoding.go
@@ -4,6 +4,7 @@ import (
   "bytes"
   "encoding/hex"
   "strings"
+  _"fmt"
 )
 
 func CompactEncode(hexSlice []int) string {
@@ -32,6 +33,21 @@ func CompactEncode(hexSlice []int) string {
   return buff.String()
 }
 
+func CompactDecode(str string) []int {
+  base := CompactHexDecode(str)
+  base = base[:len(base)-1]
+  if base[0] >= 2 {// && base[len(base)-1] != 16 {
+    base = append(base, 16)
+  }
+  if base[0] % 2 == 1 {
+    base = base[1:]
+  } else {
+    base = base[2:]
+  }
+
+  return base
+}
+
 func CompactHexDecode(str string) []int {
   base := "0123456789abcdef"
   hexSlice := make([]int, 0)
diff --git a/encoding_test.go b/encoding_test.go
index 63f7878bff9ce5a324a221d9436a0faa43d94ba0..b66f702acbf21667d77306b2d4414d5d19b03d70 100644
--- a/encoding_test.go
+++ b/encoding_test.go
@@ -27,18 +27,6 @@ func TestCompactEncode(t *testing.T) {
   }
 }
 
-// Helper function for comparing slices
-func CompareIntSlice(a, b []int) bool {
-  if len(a) != len(b) {
-    return false
-  }
-  for i, v := range a {
-    if v != b[i] {
-      return false
-    }
-  }
-  return true
-}
 
 func TestCompactHexDecode(t *testing.T) {
   exp := []int{7, 6, 6, 5, 7, 2, 6, 2, 16}