Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 4aac065

Browse files
committed
Fix guid formatting in notifications
closes #262
1 parent d7d4d9a commit 4aac065

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

market/contracts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ def accept_receipt(self, notification_listener, blockchain, receipt_json=None):
693693
image_hash = unhexlify(self.contract["vendor_offer"]["listing"]["item"]["image_hashes"][0])
694694
else:
695695
image_hash = ""
696-
buyer_guid = self.contract["buyer_order"]["order"]["id"]["guid"]
696+
buyer_guid = unhexlify(self.contract["buyer_order"]["order"]["id"]["guid"])
697697
if "blockchain_id" in self.contract["buyer_order"]["order"]["id"]:
698698
handle = self.contract["buyer_order"]["order"]["id"]["blockchain_id"]
699699
else:

0 commit comments

Comments
 (0)