From 61798eb03d7eeee3c964654d9c05057e93554895 Mon Sep 17 00:00:00 2001 From: "A.L." Date: Wed, 18 Sep 2024 14:43:11 +0100 Subject: [PATCH] fix: add empty line Co-authored-by: OliverNChalk <11343499+OliverNChalk@users.noreply.github.com> --- src/ReservoirPriceOracle.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ReservoirPriceOracle.sol b/src/ReservoirPriceOracle.sol index 084f17f..a68a3b7 100644 --- a/src/ReservoirPriceOracle.sol +++ b/src/ReservoirPriceOracle.sol @@ -170,6 +170,7 @@ contract ReservoirPriceOracle is IPriceOracle, Owned(msg.sender), ReentrancyGuar rTotalReward += _calculateReward(lPrevPrice, lNewPrice, lRewardThreshold); } } + _rewardUpdater(aRewardRecipient, rTotalReward); }