David Murdoch

Results 226 comments of David Murdoch
trafficstars

@lpinca I was referring to the uWS websocket API, as it also has an HTTP API. We have a pure JS implementation of the uWS API (not a strict port,...

> closes the listen socket for new http/ws connections, existing connections for http and ws are still open Just to expand on what is being said here for HTTP connections:...

`if (!listenSocket) return res.close()` isn't quite enough, because in my case I'd like to shut it down gracefully _on my terms_, not the client's. It could be several minutes before...

Not sure if I have the same problem since it's always Fullscreen for me, except for the Windows Taskbar at the bottom. Is there supposed to be be way of...

Is there a way to make a linter check for unused dependencies, or used dependencies that aren't in our package.json? 🤔

@naddison36 "End of Life" doesn't mean Node v12 stops working; it just means Node v12 is not actively maintained and that new releases are very unlikely (except for major security...

Cli is only faster than `ganache.server` when the process that started `ganache.server` is busy, like when running tests. If you start it in a separate process that isn't constantly busy...

@nikolinsko you can try passing in `memdown()` (https://github.com/Level/memdown) to `options.database.db`: ``` const web3 = new Web3(ganache.provider({database:{db:memdown()}})); ```

I don't think so. The reason it is slow is because Ganache's forking cache can't be used; transactions in the newer block may have changed the state we cached before....