Browse Source

bug fix: rpcpassword check was missing in node module

all-modes
Satinder Grewal 8 years ago
parent
commit
1b4c6b78e3
  1. 4
      private/setconf.js

4
private/setconf.js

@ -55,6 +55,10 @@ function parse_status_block(block) {
parsed.rpcpass = match[1];
}
if ((match = block.match(/rpcpassword=\s*(.*)/))) {
parsed.rpcpassword = match[1];
}
if ((match = block.match(/rpcport=\s*(.*)/))) {
parsed.rpcport = match[1];
}

Loading…
Cancel
Save