neoneo-go/pkg/core/transaction/attrtype.go
Evgenii Stratonikov 2661ebd295 transaction: add HighPriority attribute
HighPriority attributes specifies that transaction was
signed by a committee.
2020-08-23 09:39:46 +03:00

11 lines
205 B
Go

package transaction
//go:generate stringer -type=AttrType
// AttrType represents the purpose of the attribute.
type AttrType uint8
// List of valid attribute types.
const (
HighPriority AttrType = 1
)