Skip to content

Commit

Permalink
fix arguments names
Browse files Browse the repository at this point in the history
  • Loading branch information
uran1980 authored Sep 7, 2017
1 parent 50e43d2 commit d9a18b0
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 d9a18b0

Please sign in to comment.