From 3d4b77bee3f434b0b034e7d7b8ba672125669fd3 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Tue, 30 Dec 2025 01:27:50 -0600 Subject: [PATCH] refactor: add SIZE_48 and TOKEN_OVERHEAD constants to common size constants in constants.go --- pkg/common/constants.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkg/common/constants.go b/pkg/common/constants.go index 29592f1..451f42a 100644 --- a/pkg/common/constants.go +++ b/pkg/common/constants.go @@ -72,10 +72,12 @@ const ( FIFTEEN = 15 // Common Size Constants - SIZE_16 = 16 - SIZE_32 = 32 - SIZE_64 = 64 - SIXTY_SEVEN = 67 + SIZE_16 = 16 + SIZE_32 = 32 + SIZE_48 = 48 + SIZE_64 = 64 + SIXTY_SEVEN = 67 + TOKEN_OVERHEAD = 48 // Common Hex Constants HEX_0x00 = 0x00