-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity 0.8.23; | ||
|
||
import "src/L2/paused/L2VestingWalletPaused.sol"; | ||
import { L2VestingWalletPaused } from "src/L2/paused/L2VestingWalletPaused.sol"; | ||
|
||
/// @title L1VestingWalletPaused - Paused version of L1VestingWallet contract | ||
/// @notice This contract is used to pause the L1VestingWallet contract. In case of any emergency, the owner can upgrade | ||
/// and | ||
/// pause the contract to prevent any further vesting operations. | ||
/// L1VestingWalletPaused shares the same functionality of L1VestingWalletPaused. | ||
contract L1VestingWalletPaused is L2VestingWalletPaused { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters