You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -140,8 +140,8 @@ contract EasyLend is IExpressRelayFeeReceiver {
140
140
* @param amountDebt: amount of debt tokens in the vault
141
141
* @param minHealthRatio: minimum health ratio of the vault, 10**18 is 100%
142
142
* @param minPermissionlessHealthRatio: minimum health ratio of the vault before permissionless liquidations are allowed. This should be less than minHealthRatio
143
-
* @param tokenIdCollateral: price feed Id of the collateral token
144
-
* @param tokenIdDebt: price feed Id of the debt token
143
+
* @param tokenPriceFeedIdCollateral: price feed Id of the collateral token
144
+
* @param tokenPriceFeedIdDebt: price feed Id of the debt token
145
145
* @param updateData: data to update price feeds with
146
146
*/
147
147
function createVault(
@@ -151,8 +151,8 @@ contract EasyLend is IExpressRelayFeeReceiver {
151
151
uint256amountDebt,
152
152
uint256minHealthRatio,
153
153
uint256minPermissionlessHealthRatio,
154
-
bytes32tokenIdCollateral,
155
-
bytes32tokenIdDebt,
154
+
bytes32tokenPriceFeedIdCollateral,
155
+
bytes32tokenPriceFeedIdDebt,
156
156
bytes[] calldataupdateData
157
157
) publicpayablereturns (uint256) {
158
158
_updatePriceFeeds(updateData);
@@ -163,8 +163,8 @@ contract EasyLend is IExpressRelayFeeReceiver {
163
163
amountDebt,
164
164
minHealthRatio,
165
165
minPermissionlessHealthRatio,
166
-
tokenIdCollateral,
167
-
tokenIdDebt
166
+
tokenPriceFeedIdCollateral,
167
+
tokenPriceFeedIdDebt
168
168
);
169
169
if (minPermissionlessHealthRatio > minHealthRatio) {
0 commit comments