ffa8007e91
Align RLP implementation with upstream geth Remove geth import Update plugeth-utils version Strip out ethereum import Add omitted file
12 lines
201 B
Go
12 lines
201 B
Go
// -*- mode: go -*-
|
|
|
|
package test
|
|
|
|
import "github.com/ethereum/go-ethereum/rlp"
|
|
|
|
type Test struct {
|
|
RawValue rlp.RawValue
|
|
PointerToRawValue *rlp.RawValue
|
|
SliceOfRawValue []rlp.RawValue
|
|
}
|