diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-11 22:23:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-11 22:23:38 +0800 |
commit | a760ce05b948e89bc564af20599dcf95698ac0eb (patch) | |
tree | e9a1f0161521bc895de45e683ba6904a0d4923f9 /ethutil/rlp.go | |
parent | 2e5d28c73f1d97865def3ffe8c7ad0a4819f15f3 (diff) | |
download | go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar.gz go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar.bz2 go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar.lz go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar.xz go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.tar.zst go-tangerine-a760ce05b948e89bc564af20599dcf95698ac0eb.zip |
Updated chain for filtering
Diffstat (limited to 'ethutil/rlp.go')
-rw-r--r-- | ethutil/rlp.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ethutil/rlp.go b/ethutil/rlp.go index cf7f97ffd..17ff627eb 100644 --- a/ethutil/rlp.go +++ b/ethutil/rlp.go @@ -2,15 +2,16 @@ package ethutil import ( "bytes" - _ "encoding/binary" "fmt" - _ "log" - _ "math" "math/big" ) -type RlpEncodable interface { +type RlpEncode interface { RlpEncode() []byte +} + +type RlpEncodeDecode interface { + RlpEncode RlpValue() []interface{} } |