From 2c3cfebe3a33f30d720dd59a1e1525661896389f Mon Sep 17 00:00:00 2001 From: muzam1l Date: Tue, 28 Mar 2023 15:14:43 +0530 Subject: [PATCH] Fix HookOn initial value. --- utils/hookOnCalculator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/hookOnCalculator.ts b/utils/hookOnCalculator.ts index 4856fbf..755cc9b 100644 --- a/utils/hookOnCalculator.ts +++ b/utils/hookOnCalculator.ts @@ -30,7 +30,7 @@ export const tts = { export type TTS = typeof tts const calculateHookOn = (arr: (keyof TTS)[]) => { - let s = '0x3e3ff5bf' + let s = '0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfffff' arr.forEach(n => { let v = BigInt(s) v ^= BigInt(1) << BigInt(tts[n])