Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: David Núñez <[email protected]>
  • Loading branch information
vzotova and cygnusv committed Nov 20, 2023
1 parent 985380e commit 624ead6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/staking/IStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion contracts/staking/TokenStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 624ead6

Please sign in to comment.