Skip to content
This repository was archived by the owner on Dec 5, 2021. It is now read-only.

Commit 747751f

Browse files
authored
Fixed CrossDomainMessenger name (#96)
1 parent fa2d889 commit 747751f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/omgx/message-relayer-fast/scripts/deploy_messenger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Lib_AddressManager = await myContract.attach(process.env.ADDRESS_MANAGER_A
3333
// this will fail for non deployer account
3434
console.log('Registering L1 Messenger...')
3535
await Lib_AddressManager.setAddress(
36-
'OVM_L1FastCrossDomainMessenger',
36+
'OVM_L1CrossDomainMessengerFast',
3737
L1_Messenger.address
3838
)
3939

packages/omgx/message-relayer-fast/src/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class MessageRelayerService extends BaseService<MessageRelayerOptions> {
112112

113113
this.logger.info('Connecting to OVM_L1CrossDomainMessenger...')
114114
const l1MessengerAddress = this.options.l1MessengerFast || await this.state.Lib_AddressManager.getAddress(
115-
'OVM_L1CustomCrossDomainMessenger'
115+
'OVM_L1CrossDomainMessengerFast'
116116
)
117117
this.state.OVM_L1CrossDomainMessenger = loadContract(
118118
'OVM_L1CrossDomainMessenger',

0 commit comments

Comments
 (0)