Added encoder interface

This commit is contained in:
obscuren 2014-03-20 17:27:26 +01:00
parent 3520771d68
commit c642094cac

View File

@ -9,6 +9,10 @@ import (
"math/big" "math/big"
) )
type RlpEncodable interface {
RlpEncode() []byte
}
type RlpEncoder struct { type RlpEncoder struct {
rlpData []byte rlpData []byte
} }