Skip to content
Snippets Groups Projects
Commit 97cd80f5 authored by Caner Candan's avatar Caner Candan
Browse files

* fixed a cache issue

parent 39482dbc
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ def get_sender_transactions(pgp_fingerprint):
return rv
def get_recipient_transactions(pgp_fingerprint):
k = 'sender_transactions_%s' % pgp_fingerprint
k = 'recipient_transactions_%s' % pgp_fingerprint
rv = cache.get(k)
if rv is None:
rv = list(ucoin.hdc.transactions.Recipient(pgp_fingerprint).get())
......
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