System information
Geth version: 1.8.3-stable
OS & Version: Windows 10 x64
Expected behaviour
Clean shutdown when pressing Ctrl-C while a script is running.
Actual behaviour
Unclean shutdown.
Steps to reproduce the behaviour
- Create a file
test.js with the following contents:
eth.filter("latest", function() {});
- Start
geth js test.js
- Once started, press
Ctrl+C.
- Geth is killed instead of gracefully shutting down.