diff --git a/src/pages/verify/index.tsx b/src/pages/verify/index.tsx index abbaaae..921a181 100644 --- a/src/pages/verify/index.tsx +++ b/src/pages/verify/index.tsx @@ -264,7 +264,7 @@ export const VerifyPage = () => { }) if (upgradedTimestamps.length === 0) { - toast.success('No further timestamp upgrades found.') + toast.success('No timestamp upgrades found.') return } diff --git a/src/utils/opentimestamps.ts b/src/utils/opentimestamps.ts index a466f6a..bda5544 100644 --- a/src/utils/opentimestamps.ts +++ b/src/utils/opentimestamps.ts @@ -31,7 +31,7 @@ export const generateTimestamp = async ( export const upgradeAndVerifyTimestamp = async ( timestamp: OpenTimestamp ): Promise => { - const upgradedResult = await retry(() => upgrade(timestamp)) + const upgradedResult = await upgrade(timestamp) return await verify(upgradedResult) } @@ -44,6 +44,7 @@ export const upgradeAndVerifyTimestamp = async ( const upgrade = async ( t: OpenTimestamp ): Promise => { + console.log('timestamp: ', t) const detachedTimestamp = window.OpenTimestamps.DetachedTimestampFile.deserialize( hexStringToUint8Array(t.value)