few normal edits

This commit is contained in:
Samyak Jain 2019-09-06 15:37:01 -07:00
parent 7ee47ff3ae
commit a15fc967b0

View File

@ -399,14 +399,14 @@ contract CompoundSave is CompoundResolver {
uint wethBal = wethContract.balanceOf(address(this));
wethContract.approve(getAddressWETH(), wethBal);
wethContract.withdraw(wethBal);
mintCEth(wethBal);
emit LogLeverageCompoundUsdc(usdcToSwap, wethBal);
mintCEth(address(this).balance);
emit LogLeverageCompoundUsdc(usdcToSwap, address(this).balance);
}
}
contract InstaCompSave is CompoundSave {
contract InstaCompSaveUsdc is CompoundSave {
uint public version;