Merge pull request #3 from uran1980/patch-1

fix arguments names
This commit is contained in:
Yuki Akiyama 2017-09-08 00:39:28 +09:00 committed by GitHub
commit d697c70c50

View File

@ -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()