mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-23 07:04:35 +00:00
11 lines
201 B
Go
11 lines
201 B
Go
// -*- mode: go -*-
|
|
|
|
package test
|
|
|
|
import "github.com/XinFinOrg/XDPoSChain/rlp"
|
|
|
|
type Test struct {
|
|
RawValue rlp.RawValue
|
|
PointerToRawValue *rlp.RawValue
|
|
SliceOfRawValue []rlp.RawValue
|
|
}
|