aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/encoding.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-18 08:34:06 +0800
committerobscuren <geffobscura@gmail.com>2014-02-18 08:34:06 +0800
commitd7eca7bcc12e940f0aa80d45e6e802ba68143b5c (patch)
tree0ca5ae2019fccbb15b326d8cf4cad365a205d4eb /ethutil/encoding.go
parent68028f492f092f0546c2c084c1694ee6bf43b34e (diff)
downloadgo-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar.gz
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar.bz2
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar.lz
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar.xz
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.tar.zst
go-tangerine-d7eca7bcc12e940f0aa80d45e6e802ba68143b5c.zip
Rlp update
Diffstat (limited to 'ethutil/encoding.go')
-rw-r--r--ethutil/encoding.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/ethutil/encoding.go b/ethutil/encoding.go
index 207548c93..1f661947a 100644
--- a/ethutil/encoding.go
+++ b/ethutil/encoding.go
@@ -3,7 +3,6 @@ package ethutil
import (
"bytes"
"encoding/hex"
- _ "fmt"
"strings"
)
@@ -36,7 +35,7 @@ func CompactEncode(hexSlice []int) string {
func CompactDecode(str string) []int {
base := CompactHexDecode(str)
base = base[:len(base)-1]
- if base[0] >= 2 { // && base[len(base)-1] != 16 {
+ if base[0] >= 2 {
base = append(base, 16)
}
if base[0]%2 == 1 {