fixed the tx time shown incorrectly

This commit is contained in:
Sai Raj 2020-12-16 02:41:58 +05:30 committed by GitHub
parent 40d015adc2
commit 94f5aba639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {