mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 23:30:36 +00:00
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
|
|
)
|