mirror of
https://github.com/Instadapp/smart-contract.git
synced 2024-07-29 22:08:07 +00:00
enter market when borrow
This commit is contained in:
parent
cd3fb604e1
commit
f605ee1682
|
@ -129,20 +129,6 @@ contract CompoundResolver is Helpers {
|
|||
event LogRepay(address erc20, address cErc20, uint tokenAmt, address owner);
|
||||
event LogRepayBehalf(address erc20, address cErc20, uint tokenAmt, address owner, address borrower);
|
||||
|
||||
/**
|
||||
* @dev Enter Compound Market to start borrowing
|
||||
*/
|
||||
function enterMarkets(address[] calldata cTokensAdd) external returns (uint[] memory isSuccess) {
|
||||
isSuccess = ComptrollerInterface(getComptrollerAddress()).enterMarkets(cTokensAdd);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Exit Compound Market to stop borrowing
|
||||
*/
|
||||
function exitMarket(address cTokensAdd) external returns (uint isSuccess) {
|
||||
isSuccess = ComptrollerInterface(getComptrollerAddress()).exitMarket(cTokensAdd);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Deposit ETH/ERC20 and mint Compound Tokens
|
||||
*/
|
||||
|
@ -212,6 +198,19 @@ contract CompoundResolver is Helpers {
|
|||
* @dev borrow ETH/ERC20
|
||||
*/
|
||||
function borrow(address erc20, address cErc20, uint tokenAmt) external {
|
||||
ComptrollerInterface troller = ComptrollerInterface(getComptrollerAddress());
|
||||
address[] memory markets = troller.getAssetsIn(address(this));
|
||||
bool isEntered = false;
|
||||
for (uint i = 0; i < markets.length; i++) {
|
||||
if (markets[i] == cErc20) {
|
||||
isEntered = true;
|
||||
}
|
||||
}
|
||||
if (!isEntered) {
|
||||
address[] memory toEnter;
|
||||
toEnter[0] = cErc20;
|
||||
troller.enterMarkets(toEnter);
|
||||
}
|
||||
require(CTokenInterface(cErc20).borrow(tokenAmt) == 0, "got collateral?");
|
||||
transferToken(erc20);
|
||||
emit LogBorrow(
|
||||
|
|
Loading…
Reference in New Issue
Block a user