Skip to content

Commit

Permalink
fix(naming): remove name clash
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Aug 5, 2024
1 parent 950afa8 commit 3e8db9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/evolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import process from 'process';
const registryId = process.env.REGISTRY_ID;
const wallet = JSON.parse(process.env.WALLET);

const process = new AOProcess({ processId: registryId });
const registry = new AOProcess({ processId: registryId });

const signer = createAoSigner(new ArweaveSigner(wallet));

const evolveResult = await process.send({
const evolveResult = await registry.send({
tags: [{ name: 'Action', value: 'Eval' }],
data: BUNDLED_AOS_LUA,
signer,
Expand Down

0 comments on commit 3e8db9f

Please sign in to comment.