(payloads: Vec<Vec<u8>>)
| 75 | |
| 76 | impl ExecuteResponse { |
| 77 | pub fn ok(payloads: Vec<Vec<u8>>) -> Self { |
| 78 | Self { |
| 79 | success: true, |
| 80 | payloads, |
| 81 | error: None, |
| 82 | } |
| 83 | } |
| 84 | pub fn err(error: TypedClusterError) -> Self { |
| 85 | Self { |
| 86 | success: false, |
no outgoing calls