@@ -38,12 +38,11 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
3838 * Initialize *
3939 **************/
4040
41- /// @notice constructor
41+ /// @notice constructor
4242 constructor () {
43- _disableInitializers ();
43+ _disableInitializers ();
4444 }
4545
46-
4746 /// @dev See {IMorphToken-initialize}.
4847 function initialize (
4948 string memory name_ ,
@@ -227,7 +226,7 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
227226 /// - `from` cannot be the zero address.
228227 /// - `to` cannot be the zero address.
229228 /// - `from` must have a balance of at least `amount`.
230- function _transfer (address from , address to , uint256 amount ) whenNotPaused internal {
229+ function _transfer (address from , address to , uint256 amount ) internal whenNotPaused {
231230 require (from != address (0 ), "transfer from the zero address " );
232231 require (to != address (0 ), "transfer to the zero address " );
233232
@@ -251,7 +250,7 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
251250 /// Requirements:
252251 ///
253252 /// - `account` cannot be the zero address.
254- function _mint (address account , uint256 amount ) whenNotPaused internal {
253+ function _mint (address account , uint256 amount ) internal whenNotPaused {
255254 require (account != address (0 ), "mint to the zero address " );
256255 _totalSupply += amount;
257256 unchecked {
@@ -271,7 +270,7 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
271270 * - `account` cannot be the zero address.
272271 * - `account` must have at least `amount` tokens.
273272 */
274- function _burn (address account , uint256 amount ) whenNotPaused internal {
273+ function _burn (address account , uint256 amount ) internal whenNotPaused {
275274 require (account != address (0 ), "ERC20: burn from the zero address " );
276275
277276 uint256 accountBalance = _balances[account];
@@ -296,7 +295,7 @@ contract MorphPlacementToken is IMorphPlacementToken, OwnableUpgradeable, Pausab
296295 ///
297296 /// - `owner` cannot be the zero address.
298297 /// - `spender` cannot be the zero address.
299- function _approve (address owner , address spender , uint256 amount ) whenNotPaused internal {
298+ function _approve (address owner , address spender , uint256 amount ) internal whenNotPaused {
300299 require (owner != address (0 ), "approve from the zero address " );
301300 require (spender != address (0 ), "approve to the zero address " );
302301
0 commit comments