We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ec12b commit c732e8fCopy full SHA for c732e8f
dapp/src/sendEmail.js
@@ -214,11 +214,9 @@ async function start() {
214
'total-processed': results.length,
215
'success-count': successCount,
216
'error-count': errorCount,
217
- 'dataset-results': results.map((r) => ({
+ 'protected-data-results': results.map((r) => ({
218
index: r.index,
219
- dataset:
220
- process.env[`IEXEC_DATASET_${r.index}_FILENAME`] ||
221
- `dataset-${r.index}`,
+ protectedData: process.env[`IEXEC_DATASET_${r.index}_FILENAME`],
222
response: r.response,
223
})),
224
};
@@ -229,7 +227,7 @@ async function start() {
229
227
);
230
228
}
231
232
- const computedData = {
+ const computedData = {
233
'deterministic-output-path': `${workerEnv.IEXEC_OUT}/result.txt`,
234
235
0 commit comments