Skip to content

Commit

Permalink
update super to ControlledToken in Ticket.sol (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg committed Jul 12, 2021
1 parent b48a830 commit c83b1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/token/Ticket.sol
Expand Up @@ -41,7 +41,7 @@ contract Ticket is ControlledToken, TicketInterface {
override
initializer
{
super.initialize(_name, _symbol, _decimals, _controller);
ControlledToken.initialize(_name, _symbol, _decimals, _controller);
sortitionSumTrees.createTree(TREE_KEY, MAX_TREE_LEAVES);

emit Initialized(
Expand Down

0 comments on commit c83b1b8

Please sign in to comment.