From 69fe74cde97beef38bc1a396c2d1562bae55c252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20=C3=81lvarez=20de=20la=20Cruz?= Date: Wed, 22 Nov 2023 17:51:35 +0100 Subject: [PATCH] hotfix: reduce mana calculator rmc (#1351) --- src/components/ManaCalculator/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ManaCalculator/constants.ts b/src/components/ManaCalculator/constants.ts index 2ccf3c798e7..ed87218959d 100644 --- a/src/components/ManaCalculator/constants.ts +++ b/src/components/ManaCalculator/constants.ts @@ -21,7 +21,7 @@ export const IOTA_SUPPLY = 4600000000000000; export const IOTA_CONGESTION = { [CongestionType.HIGH]: 350000000, [CongestionType.MEDIUM]: 0, // Dynamic - [CongestionType.LOW]: 500000, + [CongestionType.LOW]: 1000, }; export const IOTA_GENERATION_PER_SLOT = Math.pow(2, -17); @@ -39,7 +39,7 @@ export const SHIMMER_SUPPLY = 1813620509000000; export const SHIMMER_CONGESTION = { [CongestionType.HIGH]: 275000000, [CongestionType.MEDIUM]: 0, // Dynamic - [CongestionType.LOW]: 500000, + [CongestionType.LOW]: 1000, }; export const SHIMMER_GENERATION_PER_SLOT = Math.pow(2, -16);