Closed paulkernfeld closed 8 years ago
The current Node
code is being replaced, so this error shouldn't be relevant anymore.
But just to to answer your question, I was setting the err
to true
as a way to break execution from async tasks (using the async
module), since the tasks stop executing on the first error).
I got this error on the following line of code,
lib/node.js
line 160 or so, presumably becauseerr
is null. I saw this while running a browserified version ofbin/wallet.js
.I'm happy to send a PR to fix this, but I'm a little confused by the way the
err
variable is working. What doeserr = true
mean here? It sort of seems likeerr = true
isn't actually an error.