Unverified Commit 4fe31f8d by SmritiVerma Committed by GitHub

Fixed typo in ERC20PresetMinterPauser (#2233)

* Fixed typo in ERC20PresetMinterPauser

* Update ERC721PresetMinterPauserAutoId.sol

Co-authored-by: Nicolás Venturo <nicolas.venturo@gmail.com>
parent cfa9ad99
...@@ -18,7 +18,7 @@ import "../token/ERC20/ERC20Pausable.sol"; ...@@ -18,7 +18,7 @@ import "../token/ERC20/ERC20Pausable.sol";
* *
* The account that deploys the contract will be granted the minter and pauser * 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 * 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 { contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
......
...@@ -20,7 +20,7 @@ import "../token/ERC721/ERC721Pausable.sol"; ...@@ -20,7 +20,7 @@ import "../token/ERC721/ERC721Pausable.sol";
* *
* The account that deploys the contract will be granted the minter and pauser * 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 * 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 { contract ERC721PresetMinterPauserAutoId is Context, AccessControl, ERC721Burnable, ERC721Pausable {
using Counters for Counters.Counter; using Counters for Counters.Counter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment