From 22a4ba36430af653fa8f1ad30f81193180f0685e Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 29 Dec 2023 22:53:16 +0000 Subject: [PATCH] make account id closer in style to live --- project/src/utils/HashUtil.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/src/utils/HashUtil.ts b/project/src/utils/HashUtil.ts index 6b9d0d2e..c8e89ae4 100644 --- a/project/src/utils/HashUtil.ts +++ b/project/src/utils/HashUtil.ts @@ -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; } -} +} \ No newline at end of file