make account id closer in style to live

This commit is contained in:
Dev 2023-12-29 22:53:16 +00:00
parent 04675c56be
commit 22a4ba3643

View File

@ -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;
}
}
}