You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// @notice This function can be called by Agglayer Bridge and Native Converter only.
33
-
/// @param account @note CAUTION! Minting to `address(0)` will result in no tokens minted! This is to enable vbToken on Primary Chain to bridge tokens to address zero on Secondary Chain at the end of the process of migrating backing from Native Converter to Primary Chain. Please refer to `NativeConverter.sol` for more information.
34
-
function mint(addressaccount, uint256value) external onlyAgglayerBridgeAndNativeConverter nonReentrant {
17
+
/// @notice This function can be called by Agglayer Bridge, Native Converter, and additional minter-burners only.
18
+
function mint(addressaccount, uint256value) external whenNotPaused mintController(account, value) nonReentrant {
35
19
if (msg.sender==bridge() && account ==address(0)) {
0 commit comments