From 39db88c53396ab0a6d3d4105e8163de655df9388 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 30 Nov 2020 10:33:38 +0100 Subject: [PATCH] :sparkles: Reduce the max and min safe-int values to 1m. --- common/app/common/spec.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/app/common/spec.cljc b/common/app/common/spec.cljc index de5203536..c791fc467 100644 --- a/common/app/common/spec.cljc +++ b/common/app/common/spec.cljc @@ -121,8 +121,8 @@ (s/def ::point gpt/point?) (s/def ::id ::uuid) -(def max-safe-int 9007199254740991) -(def min-safe-int -9007199254740991) +(def max-safe-int 1000000) +(def min-safe-int -1000000) (s/def ::safe-integer #(and