From 3f4975475a3d73e91960a872eba34848e6e5cae6 Mon Sep 17 00:00:00 2001 From: Paul Frambot Date: Wed, 26 Jul 2023 17:04:06 +0200 Subject: [PATCH] feat: cap max fee to 25% --- src/Blue.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Blue.sol b/src/Blue.sol index 4480bf5cc..68596909a 100644 --- a/src/Blue.sol +++ b/src/Blue.sol @@ -11,7 +11,7 @@ import {Id, Market, MarketLib} from "src/libraries/MarketLib.sol"; import {SafeTransferLib} from "src/libraries/SafeTransferLib.sol"; uint256 constant WAD = 1e18; -uint256 constant MAX_FEE = 0.2e18; +uint256 constant MAX_FEE = 0.25e18; uint256 constant ALPHA = 0.5e18; contract Blue {