rename internal initializers

This commit is contained in:
Francisco Giordano
2019-01-18 16:38:26 -03:00
parent a221c17fb2
commit e808a64649
16 changed files with 81 additions and 48 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) internal initializer {
SignerRole._initialize(sender);
}
/**