Skip to content

Commit

Permalink
Fix removed TypeKind type (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos authored Aug 15, 2022
1 parent fb2e94d commit 41aecd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions abi/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
type TypeKind uint32

const (
// InvalidType represents an invalid and unused kind.
InvalidType = iota
// InvalidType represents an invalid and unused TypeKind.
InvalidType TypeKind = iota
// Uint is kind for ABI unsigned integer types, i.e. `uint<N>`.
Uint
// Byte is kind for the ABI `byte` type.
Expand Down

0 comments on commit 41aecd2

Please sign in to comment.