Skip to content

Commit

Permalink
style(contracts): Make ctc timeouts sane and readable
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian authored and smartcontracts committed Oct 1, 2021
1 parent 6390616 commit 8a135f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe('[GAS BENCHMARK] OVM_CanonicalTransactionChain', () => {
'Non-calldata overhead gas cost per transaction:',
(receipt.gasUsed.toNumber() - fixedCalldataCost) / numTxs
)
}).timeout(100000000)
}).timeout(10_000_000)

it('200 transactions in 200 contexts', async () => {
console.log(`Benchmark: 200 transactions in 200 contexts.`)
Expand Down Expand Up @@ -198,7 +198,7 @@ describe('[GAS BENCHMARK] OVM_CanonicalTransactionChain', () => {
'Non-calldata overhead gas cost per transaction:',
(receipt.gasUsed.toNumber() - fixedCalldataCost) / numTxs
)
}).timeout(100000000)
}).timeout(10_000_000)

it('100 Sequencer transactions and 100 Queue transactions in 100 contexts', async () => {
console.log(
Expand Down

0 comments on commit 8a135f1

Please sign in to comment.