blob: 2cd2a7b265675e2bf11fb44608ad8e50efaa9ded (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* To verify a block we simply put it on `enter`. `enter` will crawl
* the zchain that is connected to the zblock we got. If it fails for
* any reason we can check `logfollow` for that.
*
* We send the data tested and the exit code to continuethings()
*
*/
module.exports = (ch, res) => {
const command = spawn("ak-enter",[ch]);
response_string = "";
command.stdout.on("data", data => {
response_string = response_string + data;
console.log(`${data}`);
});
command.stderr.on("data", data => {
console.log(`stderr: ${data}`);
});
command.on('error', (error) => {
console.log(`error: ${error.message}`);
});
command.on("close", code => {
console.log(`child process exited with code ${code}`);
continuethings(code,ch,res);
});
};
|