Skip to content

Commit 624ead6

Browse files
vzotovacygnusv
andcommitted
Apply suggestions from code review
Co-authored-by: David Núñez <[email protected]>
1 parent 985380e commit 624ead6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/staking/IStaking.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ interface IStaking {
164164
/// transfer to the staking contract.
165165
function topUp(address stakingProvider, uint96 amount) external;
166166

167-
/// @notice Toggle auto authorization increase flag. If true then all amount
167+
/// @notice Toggle `autoIncrease` flag. If true then the complete amount
168168
/// in top-up will be added to already authorized applications.
169169
function toggleAutoAuthorizationIncrease(address stakingProvider) external;
170170

contracts/staking/TokenStaking.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ contract TokenStaking is Initializable, IStaking, Checkpoints {
629629
}
630630
}
631631

632-
/// @notice Toggle auto authorization increase flag. If true then all amount
632+
/// @notice Toggle `autoIncrease` flag. If true then the complete amount
633633
/// in top-up will be added to already authorized applications.
634634
function toggleAutoAuthorizationIncrease(address stakingProvider)
635635
external

0 commit comments

Comments
 (0)