You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uint256 lPrice1 =bound(aPrice1, 1e9, 1e25); // need to bound price within this range as a price below this will go to zero as during the mul and div of prices
316
310
uint256 lPrice2 =bound(aPrice2, 1e9, 1e25);
317
311
uint256 lAmtIn =bound(aAmtIn, 0, 1_000_000_000);
@@ -518,11 +512,7 @@ contract ReservoirPriceOracleTest is BaseTest {
518
512
function testUpdatePrice_AboveThresholdBelowMaxReward(uint256aPercentDiff) external {
0 commit comments