From abc9ad74b90e1d34b666ecd2ecc67367b39526f8 Mon Sep 17 00:00:00 2001 From: toninorair Date: Fri, 3 May 2024 12:17:19 -0400 Subject: [PATCH] M was almost born --- src/MToken.sol | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/MToken.sol b/src/MToken.sol index 27381caf..1d08c517 100644 --- a/src/MToken.sol +++ b/src/MToken.sol @@ -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(); }