forked from TrueCloudLab/neoneo-go
fedcc6b6fc
They're not supported in Neo 3. Also change data encoding to base64 following Neo 3 changes.
11 lines
215 B
Go
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
|
|
)
|