Commit 5fecdd8a authored by elenadimitrova's avatar elenadimitrova Committed by Kelvin Fichter

Rebase fixes

parent 7f54e47c
...@@ -219,7 +219,7 @@ describe('[GAS BENCHMARK] CanonicalTransactionChain', () => { ...@@ -219,7 +219,7 @@ describe('[GAS BENCHMARK] CanonicalTransactionChain', () => {
const queueContexts: BatchContext[] = [] const queueContexts: BatchContext[] = []
for (let i = 0; i < numEnqueues; i++) { for (let i = 0; i < numEnqueues; i++) {
await OVM_CanonicalTransactionChain.enqueue(target, gasLimit, data) await CanonicalTransactionChain.enqueue(target, gasLimit, data)
queueContexts.push({ queueContexts.push({
blockNumber: (await getNextBlockNumber(ethers.provider)) - 1, blockNumber: (await getNextBlockNumber(ethers.provider)) - 1,
...@@ -232,7 +232,7 @@ describe('[GAS BENCHMARK] CanonicalTransactionChain', () => { ...@@ -232,7 +232,7 @@ describe('[GAS BENCHMARK] CanonicalTransactionChain', () => {
const fixedCalldataCost = const fixedCalldataCost =
(transactionTemplate.slice(2).length / 2) * 16 * numTxs (transactionTemplate.slice(2).length / 2) * 16 * numTxs
const res = await appendSequencerBatch(OVM_CanonicalTransactionChain, { const res = await appendSequencerBatch(CanonicalTransactionChain, {
shouldStartAtElement: 0, shouldStartAtElement: 0,
totalElementsToAppend: numTxs + numEnqueues, totalElementsToAppend: numTxs + numEnqueues,
contexts: queueContexts, contexts: queueContexts,
......
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