mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 23:30:36 +00:00
8 lines
241 B
Go
8 lines
241 B
Go
|
package testdata
|
||
|
|
||
|
// Verify is a verification contract method which takes several arguments.
|
||
|
func Verify(argString string, argInt int, argBool bool) bool {
|
||
|
isOK := argString == "good_string" || argInt == 5 || argBool == true
|
||
|
return isOK
|
||
|
}
|