Skip to content

Commit 4b4bbf1

Browse files
committed
feat: enhance UCEFPausable privacy with AnonymousPausable
1 parent 436b8a6 commit 4b4bbf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ucef/contracts/extensions/UCEFPausable.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pragma solidity ^0.8.20;
55

66
import {UCEF} from "../UCEF.sol";
7-
import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol";
7+
import {AnonymousPausable} from "../utils/AnonymousPausable.sol";
88

99
/**
1010
* @dev ERC-20 token with pausable token transfers, minting and burning.
@@ -19,7 +19,7 @@ import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol";
1919
* access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
2020
* make the contract pause mechanism of the contract unreachable, and thus unusable.
2121
*/
22-
abstract contract UCEFPausable is UCEF, Pausable {
22+
abstract contract UCEFPausable is UCEF, AnonymousPausable {
2323
/**
2424
* @dev See {ERC20-_update}.
2525
*

0 commit comments

Comments
 (0)