Add references to trades list

This commit is contained in:
2023-03-12 11:40:23 +00:00
parent 49bb686040
commit cdebded0f6
4 changed files with 26 additions and 9 deletions

View File

@@ -116,6 +116,8 @@ class LocalPlatformClient(ABC):
if dash["contact_count"] > 0:
for contact in dash["contact_list"]:
contact_id = contact["data"]["contact_id"]
reference = await db.tx_to_ref(str(contact_id))
contact["reference"] = reference
dash_tmp[contact_id] = contact
return dash_tmp