From 4fe31f8d4dd100f9a15cbf4eb87d23f4e9256bc7 Mon Sep 17 00:00:00 2001 From: SmritiVerma <36163084+SmritiVerma@users.noreply.github.com> Date: Wed, 13 May 2020 17:26:16 +0100 Subject: [PATCH] Fixed typo in ERC20PresetMinterPauser (#2233) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed typo in ERC20PresetMinterPauser * Update ERC721PresetMinterPauserAutoId.sol Co-authored-by: Nicolás Venturo --- contracts/presets/ERC20PresetMinterPauser.sol | 2 +- contracts/presets/ERC721PresetMinterPauserAutoId.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/presets/ERC20PresetMinterPauser.sol b/contracts/presets/ERC20PresetMinterPauser.sol index 96cf1e7b2..af749b1a3 100644 --- a/contracts/presets/ERC20PresetMinterPauser.sol +++ b/contracts/presets/ERC20PresetMinterPauser.sol @@ -18,7 +18,7 @@ import "../token/ERC20/ERC20Pausable.sol"; * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter - * and pauser roles to aother accounts + * and pauser roles to other accounts */ contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); diff --git a/contracts/presets/ERC721PresetMinterPauserAutoId.sol b/contracts/presets/ERC721PresetMinterPauserAutoId.sol index e8dd790cd..c1233ec42 100644 --- a/contracts/presets/ERC721PresetMinterPauserAutoId.sol +++ b/contracts/presets/ERC721PresetMinterPauserAutoId.sol @@ -20,7 +20,7 @@ import "../token/ERC721/ERC721Pausable.sol"; * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter - * and pauser roles to aother accounts + * and pauser roles to other accounts */ contract ERC721PresetMinterPauserAutoId is Context, AccessControl, ERC721Burnable, ERC721Pausable { using Counters for Counters.Counter;