Skip to content

Commit

Permalink
hidden typo
Browse files Browse the repository at this point in the history
  • Loading branch information
krlosMata committed Aug 30, 2024
1 parent 896fa82 commit dd49c67
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity ^0.8.20;
import "../../interfaces/IPolygonZkEVMErrors.sol";

interface IPolygonZkEVMVEtrogErrors is IPolygonZkEVMErrors {
interface IPolygonZkEVMEtrogErrors is IPolygonZkEVMErrors {
/**
* @dev Thrown when the caller is not the trusted sequencer
*/
Expand Down
4 changes: 2 additions & 2 deletions contracts/v2/lib/PolygonConsensusBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeab
import "../interfaces/IPolygonZkEVMGlobalExitRootV2.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "../../interfaces/IPolygonZkEVMErrors.sol";
import "../interfaces/IPolygonZkEVMVEtrogErrors.sol";
import "../interfaces/IPolygonZkEVMEtrogErrors.sol";
import "../interfaces/IPolygonConsensusBase.sol";
import "../interfaces/IPolygonRollupBase.sol";
import "../interfaces/IPolygonZkEVMBridgeV2.sol";
Expand All @@ -24,7 +24,7 @@ import "../PolygonRollupManager.sol";
abstract contract PolygonConsensusBase is
Initializable,
IPolygonConsensusBase,
IPolygonZkEVMVEtrogErrors
IPolygonZkEVMEtrogErrors
{
// POL token address
IERC20Upgradeable public immutable pol;
Expand Down
2 changes: 1 addition & 1 deletion contracts/v2/lib/PolygonRollupBaseEtrog.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "../interfaces/IPolygonZkEVMGlobalExitRootV2.sol";
import "../../interfaces/IPolygonZkEVMErrors.sol";
import "../interfaces/IPolygonZkEVMVEtrogErrors.sol";
import "../interfaces/IPolygonZkEVMEtrogErrors.sol";
import "../PolygonRollupManager.sol";
import "../interfaces/IPolygonRollupBase.sol";
import "../interfaces/IPolygonZkEVMBridgeV2.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeab
import "../interfaces/IPolygonZkEVMGlobalExitRootV2.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "../../interfaces/IPolygonZkEVMErrors.sol";
import "../interfaces/IPolygonZkEVMVEtrogErrors.sol";
import "../interfaces/IPolygonZkEVMEtrogErrors.sol";
import "../PolygonRollupManager.sol";
import "./IPolygonRollupBasePrevious.sol";
import "../interfaces/IPolygonZkEVMBridgeV2.sol";
Expand All @@ -23,7 +23,7 @@ import "../lib/PolygonConstantsBase.sol";
abstract contract PolygonRollupBaseEtrogPrevious is
Initializable,
PolygonConstantsBase,
IPolygonZkEVMVEtrogErrors,
IPolygonZkEVMEtrogErrors,
IPolygonRollupBasePrevious
{
using SafeERC20Upgradeable for IERC20Upgradeable;
Expand Down

0 comments on commit dd49c67

Please sign in to comment.