mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-07 03:02:20 +00:00
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
|
||
|
}
|