smartcontract: update trigger.Type stringer

We have to explicitly specify the type of `All` trigger type for proper
automatic generation of string representation.
This commit is contained in:
Anna Shaleva 2020-09-07 11:11:24 +03:00
parent d40a730e5a
commit 34df5d5949
2 changed files with 5 additions and 1 deletions

View file

@ -25,5 +25,5 @@ const (
Application Type = 0x40
// All represents any trigger type.
All = System | Verification | Application
All Type = System | Verification | Application
)

View file

@ -11,12 +11,14 @@ func _() {
_ = x[System-1]
_ = x[Verification-32]
_ = x[Application-64]
_ = x[All-97]
}
const (
_Type_name_0 = "System"
_Type_name_1 = "Verification"
_Type_name_2 = "Application"
_Type_name_3 = "All"
)
func (i Type) String() string {
@ -27,6 +29,8 @@ func (i Type) String() string {
return _Type_name_1
case i == 64:
return _Type_name_2
case i == 97:
return _Type_name_3
default:
return "Type(" + strconv.FormatInt(int64(i), 10) + ")"
}