Skip to content

Commit

Permalink
edit struct -> Container
Browse files Browse the repository at this point in the history
  • Loading branch information
Lavishq committed Jul 26, 2024
1 parent d3248ca commit dd559c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testtypes/consensus-spec-tests/types_basics.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ type SingleFieldTestStruct struct {
A byte
}

type SmallTestStruct struct {
type SmallTestStruct(Container) {
A uint16
B uint16
}

type FixedTestStruct struct {
type FixedTestStruct(Container) {
A uint8
B uint64
C uint32
}

type VarTestStruct struct {
type VarTestStruct(Container) {
A uint16
B [1024]uint16
C uint8
}

type ComplexTestStruct struct {
type ComplexTestStruct(Container) {
A uint16
B [128]uint16
C uint8
Expand Down

0 comments on commit dd559c8

Please sign in to comment.