Skip to content

Commit

Permalink
Merge pull request #3 from uran1980/patch-1
Browse files Browse the repository at this point in the history
fix arguments names
  • Loading branch information
you21979 authored Sep 7, 2017
2 parents 50e43d2 + d9a18b0 commit d697c70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/electrum_client.js
Original file line number Diff line number Diff line change
@@ -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()
Expand Down

0 comments on commit d697c70

Please sign in to comment.