Skip to content

Commit 1d6c5c5

Browse files
authored
Merge pull request #153 from web-genie-ai/fix/epoch-length
chore: fix epoch length
2 parents 987d234 + 97463a7 commit 1d6c5c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webgenie/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757

5858
BLOCK_IN_SECONDS = 12 # block in seconds
5959

60-
TEMPO_BLOCKS = 360 # tempo blocks
60+
EPOCH_BLOCKS = 361 # epoch blocks
6161

62-
SESSION_WINDOW_BLOCKS = TEMPO_BLOCKS * 5 # session window blocks
62+
SESSION_WINDOW_BLOCKS = EPOCH_BLOCKS * 5 # session window blocks
6363

6464
CONSIDERING_SESSION_COUNTS = 8
6565

0 commit comments

Comments
 (0)