From a22011a627b7d6a7a02a91c37739a6d5b133b00e Mon Sep 17 00:00:00 2001 From: Artem Payvin Date: Mon, 10 Jan 2022 13:56:34 +0200 Subject: [PATCH] SKALE-4466 add variable to DelegationPeriodManager --- contracts/delegation/IDelegationPeriodManager.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/delegation/IDelegationPeriodManager.sol b/contracts/delegation/IDelegationPeriodManager.sol index b20782a..3f6f4e1 100644 --- a/contracts/delegation/IDelegationPeriodManager.sol +++ b/contracts/delegation/IDelegationPeriodManager.sol @@ -31,5 +31,6 @@ interface IDelegationPeriodManager { ); function setDelegationPeriod(uint monthsCount, uint stakeMultiplier) external; + function stakeMultipliers(uint monthsCount) external view returns (uint); function isDelegationPeriodAllowed(uint monthsCount) external view returns (bool); }