Commit 68f5b45f authored by elenadimitrova's avatar elenadimitrova Committed by Kelvin Fichter

Rename iOVM_L1CrossDomainMessenger to IL1CrossDomainMessenger

parent b744b6ea
...@@ -73,7 +73,7 @@ export class OptimismEnv { ...@@ -73,7 +73,7 @@ export class OptimismEnv {
if (balance.isZero()) { if (balance.isZero()) {
await fundUser(watcher, l1Bridge, utils.parseEther('20')) await fundUser(watcher, l1Bridge, utils.parseEther('20'))
} }
const l1Messenger = getContractFactory('iOVM_L1CrossDomainMessenger') const l1Messenger = getContractFactory('IL1CrossDomainMessenger')
.connect(l1Wallet) .connect(l1Wallet)
.attach(watcher.l1.messengerAddress) .attach(watcher.l1.messengerAddress)
const ovmEth = getOvmEth(l2Wallet) const ovmEth = getOvmEth(l2Wallet)
......
...@@ -9,9 +9,9 @@ import { Lib_OVMCodec } from "../../libraries/codec/Lib_OVMCodec.sol"; ...@@ -9,9 +9,9 @@ import { Lib_OVMCodec } from "../../libraries/codec/Lib_OVMCodec.sol";
import { iOVM_CrossDomainMessenger } from "../../libraries/bridge/iOVM_CrossDomainMessenger.sol"; import { iOVM_CrossDomainMessenger } from "../../libraries/bridge/iOVM_CrossDomainMessenger.sol";
/** /**
* @title iOVM_L1CrossDomainMessenger * @title IL1CrossDomainMessenger
*/ */
interface iOVM_L1CrossDomainMessenger is iOVM_CrossDomainMessenger { interface IL1CrossDomainMessenger is iOVM_CrossDomainMessenger {
/******************* /*******************
* Data Structures * * Data Structures *
......
...@@ -12,7 +12,7 @@ import { Lib_PredeployAddresses } from "../../libraries/constants/Lib_PredeployA ...@@ -12,7 +12,7 @@ import { Lib_PredeployAddresses } from "../../libraries/constants/Lib_PredeployA
import { Lib_CrossDomainUtils } from "../../libraries/bridge/Lib_CrossDomainUtils.sol"; import { Lib_CrossDomainUtils } from "../../libraries/bridge/Lib_CrossDomainUtils.sol";
/* Interface Imports */ /* Interface Imports */
import { iOVM_L1CrossDomainMessenger } from "./iOVM_L1CrossDomainMessenger.sol"; import { IL1CrossDomainMessenger } from "./IL1CrossDomainMessenger.sol";
import { iOVM_CanonicalTransactionChain } from "../rollup/iOVM_CanonicalTransactionChain.sol"; import { iOVM_CanonicalTransactionChain } from "../rollup/iOVM_CanonicalTransactionChain.sol";
import { iOVM_StateCommitmentChain } from "../rollup/iOVM_StateCommitmentChain.sol"; import { iOVM_StateCommitmentChain } from "../rollup/iOVM_StateCommitmentChain.sol";
...@@ -33,7 +33,7 @@ import { ReentrancyGuardUpgradeable } from ...@@ -33,7 +33,7 @@ import { ReentrancyGuardUpgradeable } from
* Runtime target: EVM * Runtime target: EVM
*/ */
contract OVM_L1CrossDomainMessenger is contract OVM_L1CrossDomainMessenger is
iOVM_L1CrossDomainMessenger, IL1CrossDomainMessenger,
Lib_AddressResolver, Lib_AddressResolver,
OwnableUpgradeable, OwnableUpgradeable,
PausableUpgradeable, PausableUpgradeable,
...@@ -210,7 +210,7 @@ contract OVM_L1CrossDomainMessenger is ...@@ -210,7 +210,7 @@ contract OVM_L1CrossDomainMessenger is
/** /**
* Relays a cross domain message to a contract. * Relays a cross domain message to a contract.
* @inheritdoc iOVM_L1CrossDomainMessenger * @inheritdoc IL1CrossDomainMessenger
*/ */
function relayMessage( function relayMessage(
address _target, address _target,
...@@ -284,7 +284,7 @@ contract OVM_L1CrossDomainMessenger is ...@@ -284,7 +284,7 @@ contract OVM_L1CrossDomainMessenger is
/** /**
* Replays a cross domain message to the target messenger. * Replays a cross domain message to the target messenger.
* @inheritdoc iOVM_L1CrossDomainMessenger * @inheritdoc IL1CrossDomainMessenger
*/ */
function replayMessage( function replayMessage(
address _target, address _target,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment