Skip to content

Commit

Permalink
Update ICToken.sol
Browse files Browse the repository at this point in the history
Make Solidity version consistent with other interfaces.
  • Loading branch information
nevillegrech authored Aug 6, 2020
1 parent eba6abe commit c847d09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compound/contracts/ICToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.5.16;
pragma solidity ^0.5.0;

interface ICToken {
function mint(uint mintAmount) external returns (uint);
Expand All @@ -20,4 +20,4 @@ interface ICToken {
function approve(address, uint) external;
function transfer(address, uint) external returns (bool);
function transferFrom(address, address, uint) external returns (bool);
}
}

0 comments on commit c847d09

Please sign in to comment.