Skip to content
Snippets Groups Projects
Commit 891dc126 authored by inso's avatar inso
Browse files

Error during last merge

parent 9a8e16af
No related branches found
No related tags found
No related merge requests found
...@@ -269,13 +269,13 @@ class Wallet(QObject): ...@@ -269,13 +269,13 @@ class Wallet(QObject):
if community.currency not in self.caches: if community.currency not in self.caches:
self.caches[community.currency] = Cache(self) self.caches[community.currency] = Cache(self)
def refresh_cache(self, community): def refresh_cache(self, community, received_list):
''' '''
Refresh the cache of this wallet for the specified community. Refresh the cache of this wallet for the specified community.
:param community: The community to refresh its cache :param community: The community to refresh its cache
''' '''
self.caches[community.currency].refresh(community) self.caches[community.currency].refresh(community, received_list)
def check_password(self, salt, password): def check_password(self, salt, password):
''' '''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment