diff --git a/contracts/evm/tools/ZetaInteractor.sol b/contracts/evm/tools/ZetaInteractor.sol index e59dd2ff..3ec12678 100644 --- a/contracts/evm/tools/ZetaInteractor.sol +++ b/contracts/evm/tools/ZetaInteractor.sol @@ -30,7 +30,6 @@ abstract contract ZetaInteractor is Ownable2Step, ZetaInteractorErrors { modifier isValidRevertCall(ZetaInterfaces.ZetaRevert calldata zetaRevert) { _isValidCaller(); if (zetaRevert.zetaTxSenderAddress != address(this)) revert InvalidZetaRevertCall(); - if (zetaRevert.sourceChainId != currentChainId) revert InvalidZetaRevertCall(); _; }