Skip to content

Commit

Permalink
make slither super jolly
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Nov 1, 2023
1 parent 716dc25 commit aa79c5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/token-manager/TokenManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ abstract contract TokenManager is ITokenManager, Operatable, FlowLimit, Implemen

/**
* @notice This function sets the flow limit for this TokenManager. Can only be called by the flow limiters.
* @param flowLimit the maximum difference between the tokens flowing in and/or out at any given interval of time (6h)
* @param flowLimit_ the maximum difference between the tokens flowing in and/or out at any given interval of time (6h)
*/
function setFlowLimit(uint256 flowLimit) external onlyRole(uint8(Roles.FLOW_LIMITER)) {
_setFlowLimit(flowLimit, tokenId());
function setFlowLimit(uint256 flowLimit_) external onlyRole(uint8(Roles.FLOW_LIMITER)) {
_setFlowLimit(flowLimit_, tokenId());
}

/**
Expand Down

0 comments on commit aa79c5e

Please sign in to comment.