fix: removes retrier and updates notification
Some checks failed
Open PR on Staging / audit_and_check (pull_request) Failing after 30s

This commit is contained in:
eugene 2024-10-07 17:24:25 +02:00
parent f38344b9ac
commit 3d5006a715
2 changed files with 3 additions and 2 deletions

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)