Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
mchitgarha78 committed Sep 9, 2024
2 parents 9436113 + 64715d9 commit 22b8947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def init_sequencer(self) -> None:
url: str = f"{self.NODES[node_id]['socket']}/node/state"
try:
response = requests.get(url=url, headers=self.HEADERS, timeout=1).json()
if response["data"]["version"] != zconfig.VERSION:
if response["data"]["version"] != self.VERSION:
continue
sequencer_id = response["data"]["sequencer_id"]
sequencers_stake[sequencer_id] += self.NODES[sequencer_id]["stake"]
Expand Down

0 comments on commit 22b8947

Please sign in to comment.