|
@@ -6,7 +6,6 @@ pragma solidity ^0.8.19;
|
|
import {AccessControl} from "../access/AccessControl.sol";
|
|
import {AccessControl} from "../access/AccessControl.sol";
|
|
import {ERC721Holder} from "../token/ERC721/utils/ERC721Holder.sol";
|
|
import {ERC721Holder} from "../token/ERC721/utils/ERC721Holder.sol";
|
|
import {ERC1155Holder} from "../token/ERC1155/utils/ERC1155Holder.sol";
|
|
import {ERC1155Holder} from "../token/ERC1155/utils/ERC1155Holder.sol";
|
|
-import {ERC1155Receiver} from "../token/ERC1155/utils/ERC1155Receiver.sol";
|
|
|
|
import {Address} from "../utils/Address.sol";
|
|
import {Address} from "../utils/Address.sol";
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -160,7 +159,7 @@ contract TimelockController is AccessControl, ERC721Holder, ERC1155Holder {
|
|
*/
|
|
*/
|
|
function supportsInterface(
|
|
function supportsInterface(
|
|
bytes4 interfaceId
|
|
bytes4 interfaceId
|
|
- ) public view virtual override(AccessControl, ERC1155Receiver) returns (bool) {
|
|
|
|
|
|
+ ) public view virtual override(AccessControl, ERC1155Holder) returns (bool) {
|
|
return super.supportsInterface(interfaceId);
|
|
return super.supportsInterface(interfaceId);
|
|
}
|
|
}
|
|
|
|
|