Skip to content

Commit 6e390fd

Browse files
committed
feat: script to upload all the bytecode to the BCR
1 parent c86e97b commit 6e390fd

File tree

2 files changed

+556
-2
lines changed

2 files changed

+556
-2
lines changed

contracts/compressors/PriceFeedCompressor.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ contract PriceFeedCompressor is BaseCompressor, IPriceFeedCompressor {
188188
/// @dev Returns the list of price feeds from `priceFeedMap`
189189
function _getPriceFeedsFromMap(PriceFeedMapEntry[] memory priceFeedMap)
190190
internal
191-
view
191+
pure
192192
returns (address[] memory priceFeeds)
193193
{
194194
uint256 len = priceFeedMap.length;
@@ -201,7 +201,7 @@ contract PriceFeedCompressor is BaseCompressor, IPriceFeedCompressor {
201201
/// @dev Returns the list of updatable feeds from `priceFeedTree`
202202
function _getUpdatablePriceFeedsFromTree(PriceFeedTreeNode[] memory priceFeedTree)
203203
internal
204-
view
204+
pure
205205
returns (BaseParams[] memory priceFeeds)
206206
{
207207
priceFeeds = new BaseParams[](priceFeedTree.length);

0 commit comments

Comments
 (0)