Skip to content

Commit

Permalink
revert ZetaEthMock change
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Jul 10, 2023
1 parent ac6de72 commit e35a1ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/EthZetaMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ZetaEthMock is ERC20("Zeta", "ZETA") {
constructor(uint256 initialSupply) {
_mint(msg.sender, initialSupply * (10 ** uint256(decimals())));
constructor(address creator, uint256 initialSupply) {
_mint(creator, initialSupply * (10 ** uint256(decimals())));
}
}

0 comments on commit e35a1ea

Please sign in to comment.