From aaa5a6fd5853c92b69a94164a14833cc3329b7e2 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 10 Aug 2018 11:12:45 -0400 Subject: [PATCH] put as one line --- lib/modules/console_listener/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/modules/console_listener/index.js b/lib/modules/console_listener/index.js index a85fee110..2d330c9f4 100644 --- a/lib/modules/console_listener/index.js +++ b/lib/modules/console_listener/index.js @@ -111,8 +111,7 @@ class ConsoleListener { apiRoute, (ws, _req) => { this.events.on('contracts:log', function(log) { - ws.send(JSON.stringify(log), () => { - }); + ws.send(JSON.stringify(log), () => {}); }); } );