fix linter errors and warnings

This commit is contained in:
Francisco Giordano
2018-05-18 21:58:02 -03:00
parent 16f04b13d7
commit 700b811813
12 changed files with 47 additions and 14 deletions

View File

@ -15,7 +15,7 @@ contract Pausable is Migratable, Ownable {
bool public paused = false;
function initialize(address _sender) isInitializer("Pausable", "1.9.0-beta") {
function initialize(address _sender) isInitializer("Pausable", "1.9.0-beta") public {
Ownable.initialize(_sender);
}