Skip to content

Commit

Permalink
feat: add _role
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenvaleri committed Jul 22, 2024
1 parent 5a742ec commit 254728b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/PToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol";

contract PToken is ERC20, AccessControl, Pausable {
bytes32 public constant PAUSE_ROLE = keccak256("PAUSE_ROLE");
bytes32 public constant SUPPLY_ADMIN = keccak256("SUPPLY_ADMIN");
bytes32 public constant SUPPLY_ADMIN = keccak256("SUPPLY_ADMIN_ROLE");

constructor(string memory _name, string memory _symbol, uint8 _decimals)
ERC20(_name, _symbol, _decimals)
Expand Down

0 comments on commit 254728b

Please sign in to comment.