neoneo-go/pkg/core/transaction/attr_usage.go
Roman Khimov fedcc6b6fc transaction: drop old attributes
They're not supported in Neo 3. Also change data encoding to base64 following
Neo 3 changes.
2020-07-10 20:40:27 +03:00

11 lines
215 B
Go

package transaction
//go:generate stringer -type=AttrUsage
// AttrUsage represents the purpose of the attribute.
type AttrUsage uint8
// List of valid attribute usages.
const (
DescriptionURL AttrUsage = 0x81
)