Skip to content

Commit

Permalink
fix: use timestamp when fetching new receipts
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Jul 17, 2024
1 parent c58e7e2 commit d6ee532
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/solidity-devops/js/forgeScriptRun.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ if (newDeployments.length === 0) {
logInfo('No new deployments found')
process.exit(0)
}
const newReceipts = getNewDeploymentReceipts(chainName, scriptFN)
const newReceipts = getNewDeploymentReceipts(
chainName,
scriptFN,
currentTimestamp
)
newDeployments.forEach((contractAlias) =>
saveNewDeployment(chainName, contractAlias, newReceipts)
)

0 comments on commit d6ee532

Please sign in to comment.