Skip to content

Commit

Permalink
fix: forgot to inherit from protocol version
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Aug 28, 2023
1 parent c64bac3 commit 669b359
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import {IPermissionCondition} from "./IPermissionCondition.sol";
/// @title PermissionConditionUpgradeable
/// @author Aragon Association - 2023
/// @notice An abstract contract for upgradeable or cloneable contracts to inherit from and to support customary permissions depending on arbitrary on-chain state.
abstract contract PermissionConditionUpgradeable is ERC165Upgradeable, IPermissionCondition {
abstract contract PermissionConditionUpgradeable is
ERC165Upgradeable,
IPermissionCondition,
ProtocolVersion
{
/// @notice Checks if an interface is supported by this or its parent contract.
/// @param _interfaceId The ID of the interface.
/// @return Returns `true` if the interface is supported.
Expand Down

0 comments on commit 669b359

Please sign in to comment.