neoneo-go/pkg/smartcontract/call_flags.go

16 lines
299 B
Go
Raw Normal View History

2020-03-19 15:52:37 +00:00
package smartcontract
// CallFlag represents call flag.
type CallFlag byte
// Default flags.
const (
NoneFlag CallFlag = 0
AllowStates CallFlag = 1 << iota
AllowModifyStates
2020-03-19 15:52:37 +00:00
AllowCall
AllowNotify
ReadOnly = AllowStates | AllowCall | AllowNotify
All = ReadOnly | AllowModifyStates
2020-03-19 15:52:37 +00:00
)