fix linter errors

This commit is contained in:
Francisco Giordano
2019-01-24 13:18:09 -03:00
parent f3635e1517
commit e357592208
27 changed files with 50 additions and 55 deletions

View File

@ -44,8 +44,8 @@ contract SignatureBouncer is Initializable, SignerRole {
// Signature size is 65 bytes (tightly packed v + r + s), but gets padded to 96 bytes
uint256 private constant _SIGNATURE_SIZE = 96;
function _initialize(address sender) internal initializer {
SignerRole._initialize(sender);
function initialize(address sender) public initializer {
SignerRole.initialize(sender);
}
/**