Skip to content

Commit

Permalink
chore(test): reduce number of calls for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 16, 2024
1 parent ddf4aff commit ef2a324
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_dank_mids.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@
block_id=height - (i // 25000),
_w3=dank_web3,
).coroutine()
for i in range(100_000)
for i in range(0, 100_000, 3)
]

height = chain.height
MULTIBLOCK_WORK = [
Call(
CHAI, "totalSupply()(uint)", [[f"totalSupply{i}", None]], _w3=dank_web3, block_id=height - i
).coroutine()
Call(CHAI, "totalSupply()(uint)", [[f"totalSupply{i}", None]], _w3=dank_web3, block_id=height - i)
for i in range(1_000)
]

Expand Down

0 comments on commit ef2a324

Please sign in to comment.