Skip to content

Commit

Permalink
chore: fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobinstein committed Nov 8, 2024
1 parent 35dcd2e commit f5e01bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scripts/arweave-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ async function main() {
}
}

console.log(manifest);
console.log(manifestResponse)
// console.log(manifest);
// console.log(manifestResponse)

async function uploadManifest(manifest) {
try {
Expand Down Expand Up @@ -83,10 +83,10 @@ async function main() {
console.log(manifestId)

const signer = new ArweaveSigner(jwk)
const ant = ANT.init({processId: process.env.ANT_PROCESS, signer})
const ant = ANT.init({processId: process.env.DEPLOY_ANT_PROCESS_ID, signer})

const response = await ant.setRecord({
undername: "test",
undername: undername,
transactionId: manifestId,
ttlSeconds: 900
})
Expand Down

0 comments on commit f5e01bf

Please sign in to comment.