Skip to content

Commit

Permalink
Fix inheritance order
Browse files Browse the repository at this point in the history
  • Loading branch information
xavikh committed Dec 13, 2024
1 parent e9a8d16 commit dd017da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/escrow/increasing/Lock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import {IDAO} from "@aragon/osx/core/dao/IDAO.sol";
contract Lock is
ILock,
ERC721Enumerable,
ERC721URIStorageUpgradeable,
UUPSUpgradeable,
DaoAuthorizable,
ReentrancyGuard
ReentrancyGuard,
ERC721URIStorageUpgradeable
{
/// @dev enables transfers without whitelisting
address public constant WHITELIST_ANY_ADDRESS =
Expand Down

0 comments on commit dd017da

Please sign in to comment.