|
@@ -18,7 +18,6 @@ contract Launchpad is ReentrancyGuard, Pausable {
|
|
|
error InsufficientAmount(uint256 required, uint256 provided);
|
|
|
error TransferFailed();
|
|
|
error SaleNotConfigured();
|
|
|
- error ContractPaused();
|
|
|
|
|
|
// ================================
|
|
|
// State Variables
|
|
@@ -242,11 +241,6 @@ contract Launchpad is ReentrancyGuard, Pausable {
|
|
|
if (block.timestamp < claimStartTime) revert InvalidState("Claiming tokens not started yet");
|
|
|
_;
|
|
|
}
|
|
|
-
|
|
|
- modifier whenNotPaused() {
|
|
|
- if (paused()) revert ContractPaused();
|
|
|
- _;
|
|
|
- }
|
|
|
|
|
|
// ================================
|
|
|
// Owner Functions
|