Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix is owner call
  • Loading branch information
Leo Arias authored and frangio committed Sep 6, 2018
commit 946699343839f0930f4b7566c2eedf7e774d53e5
2 changes: 1 addition & 1 deletion contracts/token/ERC20/ERC20Mintable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract ERC20Mintable is ERC20, Ownable {
}

modifier onlyMinter() {
require(isOwner(msg.sender));
require(isOwner());
_;
}

Expand Down