Skip to content

Commit

Permalink
chore: fix slither
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Dec 24, 2024
1 parent b9ffdf6 commit a9154a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contracts/0.8.25/vaults/Dashboard.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ contract Dashboard is AccessControlEnumerable {
/// @notice Address of the implementation contract
/// @dev Used to prevent initialization in the implementation
address private immutable _SELF;
/// @dev basis points base
uint256 private constant TOTAL_BASIS_POINTS = 100_00;
/// @notice Total basis points for fee calculations; equals to 100%.
uint256 internal constant TOTAL_BASIS_POINTS = 10000;

/// @notice Indicates whether the contract has been initialized
bool public isInitialized;
Expand Down
4 changes: 0 additions & 4 deletions contracts/0.8.25/vaults/Delegation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ import {Dashboard} from "./Dashboard.sol";
* The due is the amount of ether that is owed to the Curator or Operator based on the fee.
*/
contract Delegation is Dashboard {
/**
* @notice Total basis points for fee calculations; equals to 100%.
*/
uint256 private constant TOTAL_BASIS_POINTS = 10000;

/**
* @notice Maximum fee value; equals to 100%.
Expand Down

0 comments on commit a9154a7

Please sign in to comment.