github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/internal/basicchain/testdata/verify_args/verification_with_args_contract.go (about)

     1  package verify_args
     2  
     3  // Verify is a verification contract method which takes several arguments.
     4  func Verify(argString string, argInt int, argBool bool) bool {
     5  	isOK := argString == "good_string" || argInt == 5 || argBool == true
     6  	return isOK
     7  }