mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
ETH withdraw issue fixed on maker
This commit is contained in:
parent
7a6e4dae64
commit
38d4f23289
|
@ -43,7 +43,7 @@ abstract contract Helpers is DSMath, Basic {
|
||||||
* @dev Gem Join address is ETH type collateral.
|
* @dev Gem Join address is ETH type collateral.
|
||||||
*/
|
*/
|
||||||
function isEth(address tknAddr) internal pure returns (bool) {
|
function isEth(address tknAddr) internal pure returns (bool) {
|
||||||
return tknAddr == ethAddr ? true : false;
|
return tknAddr == wethAddr ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -57,7 +57,7 @@ abstract contract Helpers is DSMath, Basic {
|
||||||
* @dev Collateral Join address is ETH type collateral.
|
* @dev Collateral Join address is ETH type collateral.
|
||||||
*/
|
*/
|
||||||
function isEth(address tknAddr) internal pure returns (bool) {
|
function isEth(address tknAddr) internal pure returns (bool) {
|
||||||
return tknAddr == ethAddr ? true : false;
|
return tknAddr == wethAddr ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user