From b0d2fd4695df6b7b3880f15fa04c93b62de14dfe Mon Sep 17 00:00:00 2001 From: themodernhakr Date: Sat, 22 Mar 2025 18:48:36 -0500 Subject: [PATCH] Test integer hash with smaller values --- src/database/crypt.jmc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/database/crypt.jmc b/src/database/crypt.jmc index 625f50a..2da7131 100644 --- a/src/database/crypt.jmc +++ b/src/database/crypt.jmc @@ -37,7 +37,7 @@ class database.crypt { } function test() { - test_hashInteger(1748586758492046); - test_hashInteger(69871234098769872345); + test_hashInteger(48593758); + test_hashInteger(69871234); } }