neoneo-go/pkg/core/transaction/attrtype.go
2020-10-23 11:02:46 +03:00

17 lines
381 B
Go

package transaction
//go:generate stringer -type=AttrType -linecomment
// AttrType represents the purpose of the attribute.
type AttrType uint8
// List of valid attribute types.
const (
HighPriority AttrType = 1
OracleResponseT AttrType = 0x11 // OracleResponse
NotValidBeforeT AttrType = 0xe0 // NotValidBefore
)
func (a AttrType) allowMultiple() bool {
return false
}