From 23018f95e5830b48ee7f4056532ff903f352b871 Mon Sep 17 00:00:00 2001 From: s2quake Date: Fri, 6 Dec 2024 14:58:45 +0900 Subject: [PATCH] fix: Change the reward and lockup interval to 10 for test --- Lib9c/Model/State/LegacyStakeState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib9c/Model/State/LegacyStakeState.cs b/Lib9c/Model/State/LegacyStakeState.cs index 75483527da..79ce277c9c 100644 --- a/Lib9c/Model/State/LegacyStakeState.cs +++ b/Lib9c/Model/State/LegacyStakeState.cs @@ -51,8 +51,8 @@ public void Achieve(int level, int step) } } - public const long RewardInterval = 50400; - public const long LockupInterval = 50400 * 4; + public const long RewardInterval = 10; + public const long LockupInterval = 10; public const long StakeRewardSheetV2Index = 6_700_000L; public const long CurrencyAsRewardStartIndex = 6_910_000L;