@gearbox-protocol/periphery-v3 1.7.0-next.77 → 1.7.0-next.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -188,7 +188,7 @@ contract PriceFeedCompressor is BaseCompressor, IPriceFeedCompressor {
|
|
|
188
188
|
/// @dev Returns the list of price feeds from `priceFeedMap`
|
|
189
189
|
function _getPriceFeedsFromMap(PriceFeedMapEntry[] memory priceFeedMap)
|
|
190
190
|
internal
|
|
191
|
-
|
|
191
|
+
pure
|
|
192
192
|
returns (address[] memory priceFeeds)
|
|
193
193
|
{
|
|
194
194
|
uint256 len = priceFeedMap.length;
|
|
@@ -201,7 +201,7 @@ contract PriceFeedCompressor is BaseCompressor, IPriceFeedCompressor {
|
|
|
201
201
|
/// @dev Returns the list of updatable feeds from `priceFeedTree`
|
|
202
202
|
function _getUpdatablePriceFeedsFromTree(PriceFeedTreeNode[] memory priceFeedTree)
|
|
203
203
|
internal
|
|
204
|
-
|
|
204
|
+
pure
|
|
205
205
|
returns (BaseParams[] memory priceFeeds)
|
|
206
206
|
{
|
|
207
207
|
priceFeeds = new BaseParams[](priceFeedTree.length);
|
package/package.json
CHANGED