accounts/abi: added comment

This commit is contained in:
Marius van der Wijden 2020-05-02 16:54:08 +02:00
parent b4fd6fe8a1
commit 7e932e1fdf

View file

@ -53,10 +53,10 @@ type Type struct {
stringKind string // holds the unparsed string for deriving signatures
// Tuple relative fields
TupleRawName string // Raw struct name defined in source code, may be empty.
TupleElems []*Type // Type information of all tuple fields
TupleRawNames []string // Raw field name of all tuple fields
TupelType reflect.Type
TupleRawName string // Raw struct name defined in source code, may be empty.
TupleElems []*Type // Type information of all tuple fields
TupleRawNames []string // Raw field name of all tuple fields
TupelType reflect.Type // Underlying struct of the tuple
}
var (