diff --git a/javascript/javascript_runtime.go b/javascript/javascript_runtime.go
index 704635d9763fc9a40d17d92edba446a3a2074906..6c5a873386c1114097e1aad6ebace9d5b3f860af 100644
--- a/javascript/javascript_runtime.go
+++ b/javascript/javascript_runtime.go
@@ -25,8 +25,7 @@ type JSRE struct {
 	Vm       *otto.Otto
 	pipe     *ethpipe.JSPipe
 
-	events   event.Subscription
-	quitChan chan bool
+	events event.Subscription
 
 	objectCb map[string][]otto.Value
 }
@@ -51,7 +50,6 @@ func NewJSRE(ethereum *eth.Ethereum) *JSRE {
 		otto.New(),
 		ethpipe.NewJSPipe(ethereum),
 		nil,
-		make(chan bool),
 		make(map[string][]otto.Value),
 	}
 
@@ -104,10 +102,6 @@ func (self *JSRE) Require(file string) error {
 
 func (self *JSRE) Stop() {
 	self.events.Unsubscribe()
-	// Kill the main loop
-	self.quitChan <- true
-
-	close(self.quitChan)
 	jsrelogger.Infoln("stopped")
 }