We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af47fc commit 035bf47Copy full SHA for 035bf47
bittensor_cli/src/commands/stake/children_hotkeys.py
@@ -45,7 +45,7 @@ async def get_childkey_completion_block(
45
cooldown = block_number + 7200
46
blocks_left_in_tempo = tempo - blocks_since_last_step
47
next_tempo = block_number + blocks_left_in_tempo
48
- next_epoch_after_cooldown = (cooldown - next_tempo) % tempo + cooldown
+ next_epoch_after_cooldown = (cooldown - next_tempo) % (tempo + 1) + cooldown
49
return block_number, next_epoch_after_cooldown
50
51
0 commit comments