Brought branch up to speed with light deployment update

This commit is contained in:
Zer0dot 2021-02-18 09:38:13 -05:00
commit e4f4bb0cdb
2 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,7 @@ contract LendingPoolConfigurator is VersionedInitializable, ILendingPoolConfigur
/**
* @dev Initializes reserves in batch
**/
function batchInitReserve(InitReserveInput[] calldata inputParams) public onlyPoolAdmin {
function batchInitReserve(InitReserveInput[] calldata inputParams) external onlyPoolAdmin {
ILendingPool cachedPool = pool;
for (uint256 i = 0; i < inputParams.length; i++) {
_initReserve(cachedPool, inputParams[i]);

View File

@ -528,6 +528,7 @@ export const initTokenReservesByHelper = async (
deployedStableTokens.push(stableTokenImpl);
deployedVariableTokens.push(variableTokenImpl);
deployedATokens.push(aTokenImplementation);
//reserveTokens.push();
deployedRates.push(strategyImpl);
reserveInitDecimals.push(decimals.toString());
reserveSymbols.push(symbol);