Skip to content
Snippets Groups Projects

#421: wot: Display information for correct identity

Merged #421: wot: Display information for correct identity
Merged Moul requested to merge 421_wot_fix into dev
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -67,8 +67,10 @@ def received_sent_certifications(uid_pubkey):
identity, pubkey, signed = choose_identity(uid_pubkey)
certifications = OrderedDict()
params = BlockchainParams().params
req = client(wot.requirements, pubkey)
req = req["identities"][0]
requirements = client(wot.requirements, pubkey)
for req in requirements["identities"]:
if req["pubkey"] == pubkey:
break
certifications["received_expire"] = list()
certifications["received"] = list()
for cert in identity["others"]:
Loading