Skip to content

Instantly share code, notes, and snippets.

@Datoh
Last active September 25, 2020 12:54
Show Gist options
  • Save Datoh/a3ca0705b507e5af20ada89429f39660 to your computer and use it in GitHub Desktop.
Save Datoh/a3ca0705b507e5af20ada89429f39660 to your computer and use it in GitHub Desktop.
func remote_call(node, method, varargs):
if solo:
node.call(method, varargs)
else:
node.rpc(method,varargs)
func test():
remote_call(self, "foo", 10, 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment