Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow use of type code generator in any package, refactor RLP and BLS contracts #2753

Merged
Merged
32 changes: 16 additions & 16 deletions runtime/sema/account.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions runtime/sema/crypto_algorithm_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ func newNativeEnumType(
membersConstructor func(enumType *CompositeType) []*Member,
) *CompositeType {
ty := &CompositeType{
Identifier: identifier,
EnumRawType: rawType,
Kind: common.CompositeKindEnum,
importable: true,
Identifier: identifier,
EnumRawType: rawType,
Kind: common.CompositeKindEnum,
ImportableBuiltin: true,
}

// Members of the enum type are *not* the enum cases!
Expand Down
Loading
Loading