Compare commits

...

2 Commits

Author SHA1 Message Date
Kayne Ruse 76fdbc0d13 BUG: tracking down a post validation hook bug 2022-07-24 19:01:47 +01:00
Kayne Ruse 39ddd8158a Updated dependencies 2022-07-23 11:48:36 +01:00
2 changed files with 473 additions and 1569 deletions
+469 -1565
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -64,13 +64,13 @@ const route = async (req, res) => {
}); });
if (!probe.ok) { if (!probe.ok) {
throw `Could not probe the post validation hook: ${hook}`; throw `Could not probe the post validation hook: ${hook} with accountIndex = ${account.index}`;
} }
//discard the result //discard the result
}); });
Promise.all(promises); await Promise.all(promises);
} }
catch(e) { catch(e) {
console.error('HOOK_POST_VALIDATION_ARRAY is not a valid array of strings in JSON format: ' + e); console.error('HOOK_POST_VALIDATION_ARRAY is not a valid array of strings in JSON format: ' + e);