From 2ade8cfd09d4d154eaa1f451437371c03193b73d Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Fri, 1 Jun 2018 19:12:54 -0400 Subject: [PATCH] lint is king --- lib/modules/whisper/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/whisper/index.js b/lib/modules/whisper/index.js index 822e55875..53b808711 100644 --- a/lib/modules/whisper/index.js +++ b/lib/modules/whisper/index.js @@ -19,7 +19,7 @@ class Whisper { } connectToProvider() { - let { host, port } = this.communicationConfig.connection; + let {host, port} = this.communicationConfig.connection; let web3Endpoint = 'ws://' + host + ':' + port; this.web3.setProvider(new Web3.providers.WebsocketProvider(web3Endpoint, {headers: {Origin: "http://localhost:8000"}})); }