forked from cerc-io/plugeth
12 lines
201 B
Plaintext
12 lines
201 B
Plaintext
|
// -*- mode: go -*-
|
||
|
|
||
|
package test
|
||
|
|
||
|
import "github.com/ethereum/go-ethereum/rlp"
|
||
|
|
||
|
type Test struct {
|
||
|
RawValue rlp.RawValue
|
||
|
PointerToRawValue *rlp.RawValue
|
||
|
SliceOfRawValue []rlp.RawValue
|
||
|
}
|