Moved dbTimestamps and newPeers to KV for more decoupling

This commit is contained in:
Kevin 2020-07-26 15:49:34 -05:00
parent e00d41f8a9
commit 97a5f50271
7 changed files with 23 additions and 16 deletions

View file

@ -30,7 +30,7 @@ def remove_online_peer(comm_inst, peer):
except KeyError:
pass
try:
del comm_inst.dbTimestamps[peer]
del kv.get('dbTimestamps')[peer]
except KeyError:
pass
try: