Skip to content

Commit

Permalink
tmp: Shrink periods for test
Browse files Browse the repository at this point in the history
  • Loading branch information
OnedgeLee committed Dec 30, 2024
1 parent c90bead commit 38fca6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Lib9c/Model/State/LegacyStakeState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 50;
public const long LockupInterval = 50;
public const long StakeRewardSheetV2Index = 6_700_000L;
public const long CurrencyAsRewardStartIndex = 6_910_000L;

Expand Down
2 changes: 1 addition & 1 deletion Lib9c/ValidatorDelegation/ValidatorDelegatee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public ValidatorDelegatee(

public static Currency ValidatorDelegationCurrency => Currencies.GuildGold;

public static long ValidatorUnbondingPeriod => 75600L;
public static long ValidatorUnbondingPeriod => 50L;

public static int ValidatorMaxUnbondLockInEntries => 2;

Expand Down

0 comments on commit 38fca6f

Please sign in to comment.