make account id closer in style to live
This commit is contained in:
parent
04675c56be
commit
22a4ba3643
@ -47,8 +47,8 @@ export class HashUtil
|
||||
|
||||
public generateAccountId(): number
|
||||
{
|
||||
const min = 1;
|
||||
const max = 1000;
|
||||
const min = 1000000;
|
||||
const max = 1999999;
|
||||
return (max > min) ? Math.floor(Math.random() * (max - min + 1) + min) : min;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user