Skip to content

Commit d697c70

Browse files
authored
Merge pull request #3 from uran1980/patch-1
fix arguments names
2 parents 50e43d2 + d9a18b0 commit d697c70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/electrum_client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const Client = require("./client")
22
class ElectrumClient extends Client{
3-
constructor(protocol, port, host, options){
4-
super(protocol, port, host, options)
3+
constructor(port, host, protocol, options){
4+
super(port, host, protocol, options)
55
}
66
onClose(){
77
super.onClose()

0 commit comments

Comments
 (0)