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 9550d3b commit 0cafaf8Copy full SHA for 0cafaf8
mytoncore/functions.py
@@ -328,9 +328,11 @@ def get_ok_error(value: str):
328
statistics['node'][0] = data
329
elif statistics['node'][0]['timestamp'] < election_id:
330
331
- statistics['node'] = statistics.get('node', []) + [data]
332
- statistics['node'].pop(1)
+ temp = statistics.get('node', []) + [data]
+ temp.pop(1)
333
+ statistics['node'] = temp
334
local.db["statistics"] = statistics
335
+ local.save()
336
337
338
def ReadTransData(local, scanner):
0 commit comments