Skip to content

Commit

Permalink
get mintTimestamp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Powroznik committed Dec 8, 2023
1 parent bc37eaf commit 8cc093b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/operator/operatorRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export async function operatorRuntime(
status: NodeLicenseStatus.FETCHING_MINT_TIMESTAMP,
});
safeStatusCallback();
mintTimestamps[nodeLicenseId.toString()] = await getMintTimestamp(nodeLicenseId);
mintTimestamps[nodeLicenseId.toString()] = await retry(async () => await getMintTimestamp(nodeLicenseId));
nodeLicenseStatusMap.set(nodeLicenseId, {
...nodeLicenseStatusMap.get(nodeLicenseId) as NodeLicenseInformation,
status: NodeLicenseStatus.WAITING_FOR_NEXT_CHALLENGE,
Expand Down

0 comments on commit 8cc093b

Please sign in to comment.