neo-go/pkg/interop/neogointernal/call.go
Anna Shaleva 6b21ad9922 *: replace interface{} with any keyword
Everywhere including examples, external interop APIs, bindings generators
code and in other valuable places. A couple of `interface{}` usages are
intentionally left in the CHANGELOG.md, documentation and tests.
2023-04-04 13:22:42 +03:00

12 lines
507 B
Go

package neogointernal
// CallWithToken performs contract call using CALLT instruction. It only works
// for static script hashes and methods, requiring additional metadata compared to
// ordinary contract.Call. It's more efficient though.
func CallWithToken(scriptHash string, method string, flags int, args ...any) any {
return nil
}
// CallWithTokenNoRet is a version of CallWithToken that does not return anything.
func CallWithTokenNoRet(scriptHash string, method string, flags int, args ...any) {
}