We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7c9bd commit 1f3904eCopy full SHA for 1f3904e
packages/horizon/contracts/staking/HorizonStakingBase.sol
@@ -290,7 +290,7 @@ abstract contract HorizonStakingBase is
290
/**
291
* @notice See {IHorizonStakingBase-getDelegatedTokensAvailable}.
292
*/
293
- function _getDelegatedTokensAvailable(address _serviceProvider, address _verifier) internal view returns (uint256) {
+ function _getDelegatedTokensAvailable(address _serviceProvider, address _verifier) private view returns (uint256) {
294
DelegationPoolInternal storage poolInternal = _getDelegationPool(_serviceProvider, _verifier);
295
return poolInternal.tokens - poolInternal.tokensThawing;
296
}
0 commit comments