Skip to content

Commit d9a18b0

Browse files
author
Ivan Yakovlev
authored
fix arguments names
1 parent 50e43d2 commit d9a18b0

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)