From d9a18b080ba78fb73f51f15cfc153612bd8b791a Mon Sep 17 00:00:00 2001 From: Ivan Yakovlev Date: Thu, 7 Sep 2017 13:03:30 +0200 Subject: [PATCH] fix arguments names --- lib/electrum_client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/electrum_client.js b/lib/electrum_client.js index b1833e8..be98885 100644 --- a/lib/electrum_client.js +++ b/lib/electrum_client.js @@ -1,7 +1,7 @@ const Client = require("./client") class ElectrumClient extends Client{ - constructor(protocol, port, host, options){ - super(protocol, port, host, options) + constructor(port, host, protocol, options){ + super(port, host, protocol, options) } onClose(){ super.onClose()