Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaryash90 committed Feb 26, 2024
1 parent 8959088 commit 487c097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/infra/ContractPublisher.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pragma solidity ^0.8.0;
import "@openzeppelin/contracts/metatx/ERC2771Context.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/utils/Multicall.sol";
import "../extension/Multicall.sol";

// ========== Internal imports ==========
import { IContractPublisher } from "./interface/IContractPublisher.sol";
Expand Down Expand Up @@ -257,7 +257,7 @@ contract ContractPublisher is IContractPublisher, ERC2771Context, AccessControlE
}

/// @dev ERC2771Context overrides
function _msgSender() internal view virtual override(Context, ERC2771Context) returns (address sender) {
function _msgSender() internal view virtual override(Context, ERC2771Context, Multicall) returns (address sender) {
return ERC2771Context._msgSender();
}

Expand Down

0 comments on commit 487c097

Please sign in to comment.