Revert "did natspec for TokenBridgePauseManager (#379)" (#392)

This reverts commit 7778380871.
This commit is contained in:
kyzooghost
2024-12-04 23:41:58 +11:00
committed by GitHub
parent 96ec6867be
commit fb752e5325
2 changed files with 0 additions and 15 deletions

View File

@@ -9,15 +9,8 @@ import { PauseManager } from "./PauseManager.sol";
* @custom:security-contact security-report@linea.build
*/
abstract contract TokenBridgePauseManager is PauseManager {
/// @notice This is used to pause token bridging initiation.
bytes32 public constant PAUSE_INITIATE_TOKEN_BRIDGING_ROLE = keccak256("PAUSE_INITIATE_TOKEN_BRIDGING_ROLE");
/// @notice This is used to unpause token bridging initiation.
bytes32 public constant UNPAUSE_INITIATE_TOKEN_BRIDGING_ROLE = keccak256("UNPAUSE_INITIATE_TOKEN_BRIDGING_ROLE");
/// @notice This is used to pause token bridging completion.
bytes32 public constant PAUSE_COMPLETE_TOKEN_BRIDGING_ROLE = keccak256("PAUSE_COMPLETE_TOKEN_BRIDGING_ROLE");
/// @notice This is used to unpause token bridging completion.
bytes32 public constant UNPAUSE_COMPLETE_TOKEN_BRIDGING_ROLE = keccak256("UNPAUSE_COMPLETE_TOKEN_BRIDGING_ROLE");
}

View File

@@ -8,29 +8,21 @@
bytes32 PAUSE_INITIATE_TOKEN_BRIDGING_ROLE
```
This is used to pause token bridging initiation.
### UNPAUSE_INITIATE_TOKEN_BRIDGING_ROLE
```solidity
bytes32 UNPAUSE_INITIATE_TOKEN_BRIDGING_ROLE
```
This is used to unpause token bridging initiation.
### PAUSE_COMPLETE_TOKEN_BRIDGING_ROLE
```solidity
bytes32 PAUSE_COMPLETE_TOKEN_BRIDGING_ROLE
```
This is used to pause token bridging completion.
### UNPAUSE_COMPLETE_TOKEN_BRIDGING_ROLE
```solidity
bytes32 UNPAUSE_COMPLETE_TOKEN_BRIDGING_ROLE
```
This is used to unpause token bridging completion.