Skip to content

Commit

Permalink
Rename DSToken interface to DSTokenLike
Browse files Browse the repository at this point in the history
  • Loading branch information
gbalabasquer committed Feb 21, 2019
1 parent 425883b commit a3d965b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/join.sol
Expand Up @@ -24,7 +24,7 @@ contract GemLike {
function transferFrom(address,address,uint) public returns (bool);
}

contract DSToken {
contract DSTokenLike {
function mint(address,uint) public;
function burn(address,uint) public;
}
Expand Down Expand Up @@ -105,10 +105,10 @@ contract ETHJoin is DSNote {

contract DaiJoin is DSNote {
VatLike public vat;
DSToken public dai;
DSTokenLike public dai;
constructor(address vat_, address dai_) public {
vat = VatLike(vat_);
dai = DSToken(dai_);
dai = DSTokenLike(dai_);
}
uint constant ONE = 10 ** 27;
function mul(uint x, uint y) internal pure returns (int z) {
Expand Down

0 comments on commit a3d965b

Please sign in to comment.