Skip to content

Commit

Permalink
Name shadowing.
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhaleking committed Jan 10, 2025
1 parent 9a669a4 commit 46a1468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e_tests/utils/chain_interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def next_tempo(current_block: int, tempo: int, netuid: int) -> int:
"""
interval = tempo + 1
last_epoch = current_block - 1 - (current_block + netuid + 1) % interval
next_tempo = last_epoch + interval
return next_tempo
next_tempo_ = last_epoch + interval
return next_tempo_


async def wait_interval(
Expand Down

0 comments on commit 46a1468

Please sign in to comment.