Fixed standard error.

This commit is contained in:
Sowmayjain 2018-10-29 04:25:04 +05:30
parent b27c1d5881
commit 19c66304a8

View File

@ -120,7 +120,8 @@ contract RepayLoan is IssueLoan {
uint daiWipe, uint daiWipe,
uint mkrFees, uint mkrFees,
uint ethFree uint ethFree
) public { ) public
{
if (daiWipe > 0) {wipeDAI(daiWipe, mkrFees);} if (daiWipe > 0) {wipeDAI(daiWipe, mkrFees);}
if (ethFree > 0) {unlockETH(ethFree);} if (ethFree > 0) {unlockETH(ethFree);}
} }