Merge branch 'fix/171-getter-marketid' into 'master'

- Added getter to _marketId

Closes #171

See merge request aave-tech/protocol-v2!194
This commit is contained in:
The-3D 2020-11-27 09:08:23 +00:00
commit 578f3171bf
2 changed files with 10 additions and 0 deletions

View File

@ -20,6 +20,8 @@ interface ILendingPoolAddressesProvider {
event ProxyCreated(bytes32 id, address indexed newAddress);
event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);
function getMarketId() external returns (string memory);
function setMarketId(string calldata marketId) external;
function setAddress(bytes32 id, address newAddress) external;

View File

@ -32,6 +32,14 @@ contract LendingPoolAddressesProvider is Ownable, ILendingPoolAddressesProvider
_setMarketId(marketId);
}
/**
* @dev Returns the id of the Aave market to which this contracts points to
* @return The market id
**/
function getMarketId() external override returns (string memory) {
return _marketId;
}
/**
* @dev Allows to set the market which this LendingPoolAddressesProvider represents
* @param marketId The market id