From 94f5aba63960b9ab46c41670f65faa3337f5e0c7 Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Wed, 16 Dec 2020 02:41:58 +0530 Subject: [PATCH] fixed the tx time shown incorrectly --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index cefcf97..4f84b5e 100644 --- a/index.html +++ b/index.html @@ -7813,7 +7813,7 @@ Bitcoin.Util = { if (iVerify && oVerify) { console.log("Internship Certificate Verified") let link = getBlockchainLink(`tx/${id}`) - outputUI("RIBC certificate", tx.floData, `Verified (${Date(tx.time)})`, link) + outputUI("RIBC certificate", tx.floData, `Verified (${new Date(tx.time*1000)})`, link) verified.classList.remove('hide-completely') unverified.classList.add('hide-completely') } else {