mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-14 23:07:50 +00:00
15 lines
367 B
Go
15 lines
367 B
Go
|
package runtime
|
||
|
|
||
|
// TriggerType represents a byte.
|
||
|
type TriggerType byte
|
||
|
|
||
|
// List of valid trigger types.
|
||
|
const (
|
||
|
Verification TriggerType = 0x00
|
||
|
Application TriggerType = 0x10
|
||
|
)
|
||
|
|
||
|
// GetTrigger return the current trigger type. The return in this function
|
||
|
// doesn't really mather, this is just an interop placeholder.
|
||
|
func GetTrigger() TriggerType { return 0x00 }
|