diff --git a/contracts/staking/IStaking.sol b/contracts/staking/IStaking.sol index ea984960..95eafd23 100644 --- a/contracts/staking/IStaking.sol +++ b/contracts/staking/IStaking.sol @@ -164,7 +164,7 @@ interface IStaking { /// transfer to the staking contract. function topUp(address stakingProvider, uint96 amount) external; - /// @notice Toggle auto authorization increase flag. If true then all amount + /// @notice Toggle `autoIncrease` flag. If true then the complete amount /// in top-up will be added to already authorized applications. function toggleAutoAuthorizationIncrease(address stakingProvider) external; diff --git a/contracts/staking/TokenStaking.sol b/contracts/staking/TokenStaking.sol index dce0dccd..fc740592 100644 --- a/contracts/staking/TokenStaking.sol +++ b/contracts/staking/TokenStaking.sol @@ -629,7 +629,7 @@ contract TokenStaking is Initializable, IStaking, Checkpoints { } } - /// @notice Toggle auto authorization increase flag. If true then all amount + /// @notice Toggle `autoIncrease` flag. If true then the complete amount /// in top-up will be added to already authorized applications. function toggleAutoAuthorizationIncrease(address stakingProvider) external