Skip to content

Commit

Permalink
M is almost born (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
toninorair authored May 3, 2024
1 parent c9c0f64 commit 9ae79c9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/MToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,7 @@ contract MToken is IMToken, ContinuousIndexing, ERC20Extended {
* @param ttgRegistrar_ The address of the TTG Registrar contract.
* @param minterGateway_ The address of Minter Gateway.
*/
constructor(
address ttgRegistrar_,
address minterGateway_
) ContinuousIndexing() ERC20Extended("M by M^0", "MONEY", 6) {
constructor(address ttgRegistrar_, address minterGateway_) ContinuousIndexing() ERC20Extended("M by M^0", "M", 6) {
if ((ttgRegistrar = ttgRegistrar_) == address(0)) revert ZeroTTGRegistrar();
if ((minterGateway = minterGateway_) == address(0)) revert ZeroMinterGateway();
}
Expand Down

0 comments on commit 9ae79c9

Please sign in to comment.