Merge branch 'master' into peer-dep

This commit is contained in:
Nicolás Venturo
2018-10-10 09:09:06 -03:00
47 changed files with 95 additions and 1 deletions

View File

@ -44,4 +44,6 @@ contract CapperRole is Initializable {
cappers.remove(account);
emit CapperRemoved(account);
}
uint256[50] private ______gap;
}

View File

@ -44,4 +44,6 @@ contract MinterRole is Initializable {
minters.remove(account);
emit MinterRemoved(account);
}
uint256[50] private ______gap;
}

View File

@ -44,4 +44,6 @@ contract PauserRole is Initializable {
pausers.remove(account);
emit PauserRemoved(account);
}
uint256[50] private ______gap;
}

View File

@ -44,4 +44,6 @@ contract SignerRole is Initializable {
signers.remove(account);
emit SignerRemoved(account);
}
uint256[50] private ______gap;
}