Skip to content

Commit

Permalink
Switched IERC20 to an interface
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineRondelet committed Apr 28, 2021
1 parent edeb532 commit f49d13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zeth_contracts/contracts/Tokens.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pragma solidity ^0.8.0;
/// and from the Mixer. Note that we only declare the functions we are
/// interested in, namely, transferFrom() (used to do a Deposit), and
/// transfer() (used to do a withdrawal)
abstract contract IERC20
interface IERC20
{
function transferFrom(address from, address to, uint256 value)
public
Expand Down

0 comments on commit f49d13d

Please sign in to comment.