issue-166-open-timestamps #220

Merged
eugene merged 25 commits from issue-166-open-timestamps into staging 2024-10-25 11:18:47 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 3d5006a715 - Show all commits

View File

@ -264,7 +264,7 @@ export const VerifyPage = () => {
}) })
if (upgradedTimestamps.length === 0) { if (upgradedTimestamps.length === 0) {
toast.success('No further timestamp upgrades found.') toast.success('No timestamp upgrades found.')
return return
} }

View File

@ -31,7 +31,7 @@ export const generateTimestamp = async (
export const upgradeAndVerifyTimestamp = async ( export const upgradeAndVerifyTimestamp = async (
timestamp: OpenTimestamp timestamp: OpenTimestamp
): Promise<OpenTimestampUpgradeVerifyResponse> => { ): Promise<OpenTimestampUpgradeVerifyResponse> => {
const upgradedResult = await retry(() => upgrade(timestamp)) const upgradedResult = await upgrade(timestamp)
return await verify(upgradedResult) return await verify(upgradedResult)
} }
@ -44,6 +44,7 @@ export const upgradeAndVerifyTimestamp = async (
const upgrade = async ( const upgrade = async (
t: OpenTimestamp t: OpenTimestamp
): Promise<OpenTimestampUpgradeVerifyResponse> => { ): Promise<OpenTimestampUpgradeVerifyResponse> => {
console.log('timestamp: ', t)
const detachedTimestamp = const detachedTimestamp =
window.OpenTimestamps.DetachedTimestampFile.deserialize( window.OpenTimestamps.DetachedTimestampFile.deserialize(
hexStringToUint8Array(t.value) hexStringToUint8Array(t.value)