mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-01 02:37:37 +00:00
Workflow: c1fc594f020d23958b641a4e5a856b6e52c49d3bece94b95594864db16c1b0fc on branch main
11 lines
196 B
Go
11 lines
196 B
Go
// -*- mode: go -*-
|
|
|
|
package test
|
|
|
|
import "github.com/ava-labs/libevm/rlp"
|
|
|
|
type Test struct {
|
|
RawValue rlp.RawValue
|
|
PointerToRawValue *rlp.RawValue
|
|
SliceOfRawValue []rlp.RawValue
|
|
}
|