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) {
toast.success('No further timestamp upgrades found.')
toast.success('No timestamp upgrades found.')
return
}

View File

@ -31,7 +31,7 @@ export const generateTimestamp = async (
export const upgradeAndVerifyTimestamp = async (
timestamp: OpenTimestamp
): Promise<OpenTimestampUpgradeVerifyResponse> => {
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<OpenTimestampUpgradeVerifyResponse> => {
console.log('timestamp: ', t)
const detachedTimestamp =
window.OpenTimestamps.DetachedTimestampFile.deserialize(
hexStringToUint8Array(t.value)