diff --git a/pkg/interop/runtime/runtime.go b/pkg/interop/runtime/runtime.go index 5695fa780..558362c65 100644 --- a/pkg/interop/runtime/runtime.go +++ b/pkg/interop/runtime/runtime.go @@ -43,16 +43,22 @@ func GetTrigger() byte { return 0x00 } +// System returns the System trigger type value to compare with +// GetTrigger return value. +func System() byte { + return 0x01 +} + // Application returns the Application trigger type value to compare with // GetTrigger return value. func Application() byte { - return 0x10 + return 0x40 } // Verification returns the Verification trigger type value to compare with // GetTrigger return value. func Verification() byte { - return 0x00 + return 0x20 } // GasLeft returns the amount of gas available for the current execution.