Transpile 2d97b6b4
This commit is contained in:
@ -12,9 +12,7 @@ contract ERC20BurnableMockUpgradeable is Initializable, ERC20BurnableUpgradeable
|
||||
address initialAccount,
|
||||
uint256 initialBalance
|
||||
) internal onlyInitializing {
|
||||
__Context_init_unchained();
|
||||
__ERC20_init_unchained(name, symbol);
|
||||
__ERC20Burnable_init_unchained();
|
||||
__ERC20BurnableMock_init_unchained(name, symbol, initialAccount, initialBalance);
|
||||
}
|
||||
|
||||
@ -26,5 +24,11 @@ contract ERC20BurnableMockUpgradeable is Initializable, ERC20BurnableUpgradeable
|
||||
) internal onlyInitializing {
|
||||
_mint(initialAccount, initialBalance);
|
||||
}
|
||||
|
||||
/**
|
||||
* This empty reserved space is put in place to allow future versions to add new
|
||||
* variables without shifting down storage in the inheritance chain.
|
||||
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
|
||||
*/
|
||||
uint256[50] private __gap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user