2019-09-03 15:00:10 +00:00
|
|
|
package runtimecontract
|
2018-08-21 08:55:03 +00:00
|
|
|
|
|
|
|
import (
|
2019-08-15 16:41:51 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/interop/runtime"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/interop/util"
|
2018-08-21 08:55:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Check if the invoker of the contract is the specified owner
|
|
|
|
var owner = util.FromAddress("Aej1fe4mUgou48Zzup5j8sPrE3973cJ5oz")
|
|
|
|
|
2019-09-03 14:51:37 +00:00
|
|
|
// Main is something to be ran from outside.
|
2018-08-21 08:55:03 +00:00
|
|
|
func Main(operation string, args []interface{}) bool {
|
|
|
|
trigger := runtime.GetTrigger()
|
|
|
|
|
|
|
|
// Log owner upon Verification trigger
|
|
|
|
if trigger == runtime.Verification() {
|
|
|
|
if runtime.CheckWitness(owner) {
|
|
|
|
runtime.Log("Verified Owner")
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Discerns between log and notify for this test
|
|
|
|
if trigger == runtime.Application() {
|
|
|
|
return handleOperation(operation, args)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleOperation(operation string, args []interface{}) bool {
|
|
|
|
if operation == "log" {
|
|
|
|
message := args[0].(string)
|
|
|
|
runtime.Log(message)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if operation == "notify" {
|
|
|
|
runtime.Notify(args[0])
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|