Skip to content

Commit

Permalink
🔧 increasing iteration interval
Browse files Browse the repository at this point in the history
  • Loading branch information
PsicoThePato committed Oct 8, 2024
1 parent 26b82c2 commit a5615e2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/synthia/validator/_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from communex.compat.types import Ss58Address # type: ignore
from pydantic_settings import BaseSettings


Expand All @@ -11,8 +10,8 @@ class ValidatorSettings(BaseSettings):

# == Scoring ==
# sleep time between each iteration
# (we are aiming at 50 block subnet tempo, with 8 second block time)
iteration_interval: int = 1920
# blocks * block_time
iteration_interval: int = 360 * 8
#  this is a global parameter of the maximum weights that a validator can set
max_allowed_weights: int = 420
hf_uploader_ss58: str = "5EX6ixabe8fiWHySw4SYaJAkaHLKeqSJ3rv7so2FrLC2cfGV"
Expand Down

0 comments on commit a5615e2

Please sign in to comment.