Skip to content

Commit 38742f7

Browse files
fix: correct ACCOUNT_CACHE_SIZE environment variable typo
Critical typo fix: ACCOUNT_CAHCE_SIZE -> ACCOUNT_CACHE_SIZE This typo prevented the account cache from being configured properly, causing the cache to not initialize with the correct size limit. Impact: - Account caching was broken - Performance degradation for wallet operations - Potential memory issues with unlimited cache growth
1 parent 3b5b14c commit 38742f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/utils/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export const env = createEnv({
167167
ENABLE_CUSTOM_HMAC_AUTH: process.env.ENABLE_CUSTOM_HMAC_AUTH,
168168
CUSTOM_HMAC_AUTH_CLIENT_ID: process.env.CUSTOM_HMAC_AUTH_CLIENT_ID,
169169
CUSTOM_HMAC_AUTH_CLIENT_SECRET: process.env.CUSTOM_HMAC_AUTH_CLIENT_SECRET,
170-
ACCOUNT_CACHE_SIZE: process.env.ACCOUNT_CAHCE_SIZE,
170+
ACCOUNT_CACHE_SIZE: process.env.ACCOUNT_CACHE_SIZE,
171171
EXPERIMENTAL__MINE_WORKER_BASE_POLL_INTERVAL_SECONDS:
172172
process.env.EXPERIMENTAL__MINE_WORKER_BASE_POLL_INTERVAL_SECONDS,
173173
EXPERIMENTAL__MINE_WORKER_MAX_POLL_INTERVAL_SECONDS:

0 commit comments

Comments
 (0)