DPP/DLT functionality #36

Merged
pedro merged 68 commits from dpp into main 2024-12-11 15:15:14 +00:00
2 changed files with 1 additions and 10 deletions
Showing only changes of commit b2e6406fb6 - Show all commits

View file

@ -80,10 +80,10 @@ def save_proof(signature, ev_uuid, result, proof_type, user):
if result['Status'] == STATUS_CODE.get("Success"):
timestamp = result.get('Data', {}).get('data', {}).get('timestamp')
logger.error("timestamp: %s", timestamp)
if not timestamp:
return
logger.debug("timestamp: %s", timestamp)
d = {
"type": proof_type,
"timestamp": timestamp,

View file

@ -10,8 +10,6 @@ from evidence.models import Evidence
from evidence.parse import Build
from dpp.models import Proof
logger = logging.getLogger('django')
class ProofView(View):
@ -21,9 +19,6 @@ class ProofView(View):
if not proof:
return JsonResponse({}, status=404)
logger.error(proof.type)
logger.error(proof.signature)
ev = Evidence(proof.uuid)
if not ev.doc:
return JsonResponse({}, status=404)
@ -31,10 +26,6 @@ class ProofView(View):
dev = Build(ev.doc, None, check=True)
doc = dev.get_phid()
logger.error(doc)
hs = hashlib.sha3_256(json.dumps(doc).encode()).hexdigest()
logger.error(hs)
data = {
"algorithm": ALGORITHM,
"document": json.dumps(doc)