From abc29b558a238bd06c889ada8edd495ab636f7a1 Mon Sep 17 00:00:00 2001 From: crispymangoes Date: Mon, 16 Oct 2023 09:16:55 -0700 Subject: [PATCH] Update outdated comment --- .../price-router/Extensions/Curve/CurveEMAExtension.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/price-router/Extensions/Curve/CurveEMAExtension.sol b/src/modules/price-router/Extensions/Curve/CurveEMAExtension.sol index 94a999a7..bfc9a2cb 100644 --- a/src/modules/price-router/Extensions/Curve/CurveEMAExtension.sol +++ b/src/modules/price-router/Extensions/Curve/CurveEMAExtension.sol @@ -45,13 +45,13 @@ contract CurveEMAExtension is Extension { } /** - * @notice Redstone PriceFeed Extension Storage + * @notice Curve EMA Extension Storage */ mapping(ERC20 => ExtensionStorage) public extensionStorage; /** * @notice Called by the price router during `_updateAsset` calls. - * @param asset the ERC4626 vault share to price + * @param asset the ERC20 asset to price using a Curve EMA */ function setupSource(ERC20 asset, bytes memory _storage) external override onlyPriceRouter { ExtensionStorage memory stor = abi.decode(_storage, (ExtensionStorage));