You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Success` and `Failure` copy an `[]byte` to the shared memory, and return the position and the length of the value "packed" into a single value (`uint64`).
9
+
10
+
If you use `Success`, the `[]byte` is prefixed by `rune('S')` before being copied to the shared memory.
11
+
12
+
If you use `Failure`, the `[]byte` is prefixed by `rune('F')` before being copied to the shared memory.
13
+
14
+
This value will be used by the function `CallHandleFunction` of the [Host SDK](https://github.com/bots-garden/capsule-host-sdk/blob/main/runtime.go) that will use the [`Result` function](https://github.com/bots-garden/capsule-host-sdk/blob/main/capsule.dk.go) to extract the result status (success or failure) and the result value (value or error).
0 commit comments