Rearranging the state.
This commit is contained in:
parent
5cc1e051b9
commit
b64307deef
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ function Miner(id, login, pass, ipAddress, startingDiff, messageSender, protoVer
|
|||
this.error = "Too many options in the login field";
|
||||
this.valid_miner = false;
|
||||
}
|
||||
if (typeof(addressSplit[1]) !== 'undefined' && addressSplit[1].length === 64 && addressSplit[1].test(hexMatch)) {
|
||||
if (typeof(addressSplit[1]) !== 'undefined' && addressSplit[1].length === 64 && hexMatch.test(addressSplit[1])) {
|
||||
this.paymentID = addressSplit[1];
|
||||
this.payout = this.address + "." + this.paymentID;
|
||||
} else if (addressSplit[1] !== 'undefined') {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue