- Fixed silly bug which prevented status request from working when there were elements in the list

This commit is contained in:
land_and_air
2025-08-09 20:01:08 -05:00
parent d13dbe4dd3
commit 2ac1395f99

View File

@@ -76,7 +76,7 @@ class RNSInterface:
def get_status(self):
status = {}
for node_hash in self.desired_hash_translation_map:
sources, attempts, next_allowed_time = self.desired_hash_translation_map[hash]
sources, attempts, next_allowed_time = self.desired_hash_translation_map[node_hash]
progress = 0
if node_hash in self.hash_progress:
progress = self.hash_progress[node_hash]