ETH withdraw issue fixed on maker

This commit is contained in:
Thrilok Kumar 2021-06-18 13:58:08 +05:30
parent 7a6e4dae64
commit 38d4f23289
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ abstract contract Helpers is DSMath, Basic {
* @dev Gem Join address is ETH type collateral.
*/
function isEth(address tknAddr) internal pure returns (bool) {
return tknAddr == ethAddr ? true : false;
return tknAddr == wethAddr ? true : false;
}
/**

View File

@ -57,7 +57,7 @@ abstract contract Helpers is DSMath, Basic {
* @dev Collateral Join address is ETH type collateral.
*/
function isEth(address tknAddr) internal pure returns (bool) {
return tknAddr == ethAddr ? true : false;
return tknAddr == wethAddr ? true : false;
}
/**