@gearbox-protocol/periphery-v3 1.2.11 → 1.2.13
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.
|
@@ -262,7 +262,7 @@ contract DataCompressorV3_00 is IDataCompressorV3_00, ContractsRegisterTrait, Li
|
|
|
262
262
|
result.totalValue = collateralDebtData.totalValue;
|
|
263
263
|
result.isSuccessful = true;
|
|
264
264
|
} catch {
|
|
265
|
-
_getPriceFeedFailedList(
|
|
265
|
+
result.priceFeedsNeeded = _getPriceFeedFailedList(pool, result.balances);
|
|
266
266
|
result.isSuccessful = false;
|
|
267
267
|
}
|
|
268
268
|
|
|
@@ -452,7 +452,6 @@ contract DataCompressorV3_00 is IDataCompressorV3_00, ContractsRegisterTrait, Li
|
|
|
452
452
|
|
|
453
453
|
result.totalSupply = pool.totalSupply();
|
|
454
454
|
result.totalAssets = pool.totalAssets();
|
|
455
|
-
|
|
456
455
|
result.supplyRate = pool.supplyRate();
|
|
457
456
|
|
|
458
457
|
result.version = _getVersion(address(pool));
|
package/package.json
CHANGED