From d2f3dd474b4e2f03c67d59484882b39973118a34 Mon Sep 17 00:00:00 2001 From: Hjort Date: Fri, 8 Sep 2023 13:13:55 +0200 Subject: [PATCH] Fix lint --- packages/common/src/web3Proofs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/web3Proofs.ts b/packages/common/src/web3Proofs.ts index d6ad2a2c4..ceea274ba 100644 --- a/packages/common/src/web3Proofs.ts +++ b/packages/common/src/web3Proofs.ts @@ -49,7 +49,7 @@ import { } from './web3IdHelpers'; export const MAX_STRING_BYTE_LENGTH = 31; -export const MAX_U64 = 18446744073709551615n // 2n ** 64n - 1n +export const MAX_U64 = 18446744073709551615n; // 2n ** 64n - 1n export const MIN_DATE_ISO = '-262144-01-01T00:00:00Z'; export const MAX_DATE_ISO = '+262143-12-31T23:59:59.999999999Z'; export const MIN_DATE_TIMESTAMP = Date.parse(MIN_DATE_ISO);