Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
lsqrl committed Dec 19, 2023
1 parent 2efa09e commit 2ed6cdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/irmodels/AuctionRateModel.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { BaseRiskModel } from "../services/BaseRiskModel.sol";
/// Rate model in which baseIR is based on a Dutch auction
/// 1e18 corresponds to 1, i.e. an interest rate of 100%
abstract contract AuctionRateModel is Ownable, BaseRiskModel {
uint256 constant MAX_RATE = 1e18;
uint256 private constant MAX_RATE = 1e18;
/**
* @dev gas saving trick
* latest is a timestamp and base < 1e18, they all fit in uint256
Expand Down
2 changes: 1 addition & 1 deletion src/services/debit/GmxService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Service } from "../Service.sol";
contract GmxService is AuctionRateModel, DebitService {
using SafeERC20 for IERC20;

uint256 constant BASIS_POINTS_DIVISOR = 10000;
uint256 private constant BASIS_POINTS_DIVISOR = 10000;

IRewardRouter public immutable router;
IRewardRouterV2 public immutable routerV2;
Expand Down

0 comments on commit 2ed6cdb

Please sign in to comment.