I'm starting the miner through a Node.JS script and I can only receive the output on stderr while you would expect it to come from stdout, very weird. I don't have this problem with another miner.
I managed to do a quick fix by piping stderr to stdout using 2>&1
./nheqminer -l pool -u address/worker 2>&1
But I still think this should not be the case and other people might run into this problem too
I'm starting the miner through a Node.JS script and I can only receive the output on
stderr
while you would expect it to come fromstdout
, very weird. I don't have this problem with another miner.I managed to do a quick fix by piping
stderr
tostdout
using2>&1
But I still think this should not be the case and other people might run into this problem too