Skip to content

Commit

Permalink
Merge pull request #70 from nevillegrech/patch-1
Browse files Browse the repository at this point in the history
Make Solidity version consistent with other interfaces.
  • Loading branch information
adrianmcli authored Aug 8, 2020
2 parents c76a275 + c847d09 commit 5aaa2ca
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 5aaa2ca

Please sign in to comment.