From c0dacf5cb6fa67435ceb4c9e9a1debcd49c09dd6 Mon Sep 17 00:00:00 2001 From: starknetdev Date: Thu, 14 Sep 2023 14:37:47 +0100 Subject: [PATCH] fix penalty countdown time --- ui/src/app/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/lib/constants.ts b/ui/src/app/lib/constants.ts index 82a872ffb..9ededdd95 100644 --- a/ui/src/app/lib/constants.ts +++ b/ui/src/app/lib/constants.ts @@ -57,7 +57,7 @@ export const notificationAnimations = [ // ---- CONTRACT PARAMS // Penalty time is 8 blocks, where each block is ~ 3 minutes -export const penaltyTime = 16 * (3 * 60); +export const penaltyTime = 12 * (3 * 60); export const itemCharismaDiscount = 1; export const itemBasePrice = 4; export const itemMinimumPrice = 1;