From cfff549d42f1e545134f239888c1707b859864e7 Mon Sep 17 00:00:00 2001 From: Nico Vergauwen Date: Thu, 26 Oct 2023 18:53:05 +0200 Subject: [PATCH] Staking: fix Delegation.tokensLockedUntil code comment (#863) --- contracts/staking/IStakingData.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/staking/IStakingData.sol b/contracts/staking/IStakingData.sol index 39ca8f3e9..288359e4d 100644 --- a/contracts/staking/IStakingData.sol +++ b/contracts/staking/IStakingData.sol @@ -44,7 +44,7 @@ interface IStakingData { struct Delegation { uint256 shares; // Shares owned by a delegator in the pool uint256 tokensLocked; // Tokens locked for undelegation - uint256 tokensLockedUntil; // Block when locked tokens can be withdrawn + uint256 tokensLockedUntil; // Epoch when locked tokens can be withdrawn } /**