Skip to content

Commit

Permalink
fixed address typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivpo authored and rajivpo committed May 24, 2021
1 parent ecd97f5 commit 8b2ca66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('BatchSubmitter', () => {
)
await AddressManager.setAddress(
'OVM_DecompressionPrecompileAddress',
predeploys.Lib_AddressManager
predeploys.OVM_SequencerEntrypoint
)

Mock__OVM_ExecutionManager = await smockit(
Expand Down Expand Up @@ -483,7 +483,7 @@ describe('Batch Submitter with Ganache', () => {
gasPrices.push(gasPrice)

const tx = signer.sendTransaction({
to: predeploys.Lib_AddressManager,
to: predeploys.OVM_SequencerEntrypoint,
value: 88,
nonce: 0,
gasPrice,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('[GAS BENCHMARK] OVM_CanonicalTransactionChain', () => {
)
await AddressManager.setAddress(
'OVM_DecompressionPrecompileAddress',
predeploys.Lib_AddressManager
predeploys.OVM_SequencerEntrypoint
)

Mock__OVM_ExecutionManager = await smockit(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('OVM_CanonicalTransactionChain', () => {
)
await AddressManager.setAddress(
'OVM_DecompressionPrecompileAddress',
predeploys.Lib_AddressManager
predeploys.OVM_SequencerEntrypoint
)

Mock__OVM_ExecutionManager = await smockit(
Expand Down Expand Up @@ -604,7 +604,7 @@ describe('OVM_CanonicalTransactionChain', () => {
})

it('should successfully verify against a valid sequencer transaction', async () => {
const entrypoint = predeploys.Lib_AddressManager
const entrypoint = predeploys.OVM_SequencerEntrypoint
const gasLimit = MAX_GAS_LIMIT
const data = '0x' + '12'.repeat(1234)
const timestamp = (await getEthTime(ethers.provider)) - 10
Expand Down

0 comments on commit 8b2ca66

Please sign in to comment.