Skip to content

Commit

Permalink
(style) add newline to configureMinter, reorder visibility modifier i…
Browse files Browse the repository at this point in the history
…n removeMinter (#269)
  • Loading branch information
walkerq authored and mirathewhite committed Jan 16, 2019
1 parent a2b26cd commit b2dc210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/minting/MintController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ contract MintController is Controller {
/**
* @dev remove the controller's minter.
*/
function removeMinter() onlyController public returns (bool) {
function removeMinter() public onlyController returns (bool) {
address minter = controllers[msg.sender];
emit MinterRemoved(msg.sender, minter);
return minterManager.removeMinter(minter);
Expand Down

0 comments on commit b2dc210

Please sign in to comment.