Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ func makeConfidentialRequest(config Config, nodeRuntime cre.NodeRuntime) (Result
}
```

<Aside type="note" title="Alphabetic secret ordering required">
Make sure you pass the secrets into `vaultDonSecrets` alphabetical when using multiple secrets..
</Aside>

### Step 5: Wire it into your workflow

Call the request function from your trigger handler using `cre.RunInNodeMode`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ const fetchTransaction = (sendRequester: ConfidentialHTTPSendRequester, config:
}
```

<Aside type="note" title="Alphabetic secret ordering required">
Make sure you pass the secrets into `vaultDonSecrets` alphabetical when using multiple secrets..
</Aside>

### Step 5: Wire it into your workflow

In your trigger handler, call `confHTTPClient.sendRequest()` with your fetch function and a consensus method:
Expand Down
Loading