Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Set Aztec version and start sandbox
run: |
VERSION=0.87.2 aztec-up
VERSION=0.87.4 aztec-up
aztec start --sandbox &

- name: Install project dependencies
Expand Down
2 changes: 1 addition & 1 deletion Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = [ "" ]
compiler_version = ">=0.18.0"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.2", directory = "noir-projects/aztec-nr/aztec" }
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.4", directory = "noir-projects/aztec-nr/aztec" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ bash -i <(curl -s https://install.aztec.network)
Install the correct version of the toolkit with:

```bash
aztec-up 0.87.2
aztec-up 0.87.4
```

Start the sandbox with:
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
},
"dependencies": {
"@aztec/accounts": "0.87.2",
"@aztec/aztec.js": "0.87.2",
"@aztec/noir-contracts.js": "0.87.2",
"@aztec/protocol-contracts": "0.87.2",
"@aztec/pxe": "0.87.2",
"@aztec/stdlib": "0.87.2"
"@aztec/accounts": "0.87.4",
"@aztec/aztec.js": "0.87.4",
"@aztec/noir-contracts.js": "0.87.4",
"@aztec/protocol-contracts": "0.87.4",
"@aztec/pxe": "0.87.4",
"@aztec/stdlib": "0.87.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
Expand Down
4 changes: 2 additions & 2 deletions scripts/multiple_pxe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ const store2 = await createStore('pxe2', {
});

const setupPxe1 = async () => {
const pxe = await createPXEService(node, fullConfig, true, store1);
const pxe = await createPXEService(node, fullConfig, {store: store1});
await waitForPXE(pxe);
return pxe;
};

const setupPxe2 = async () => {
const pxe = await createPXEService(node, fullConfig, true, store2);
const pxe = await createPXEService(node, fullConfig, {store: store2});
await waitForPXE(pxe);
return pxe;
};
Expand Down
2 changes: 1 addition & 1 deletion src/test/utils.nr
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ pub unconstrained fn setup() -> (&mut TestEnvironment, AztecAddress, AztecAddres

env.advance_block_by(1);
(&mut env, voting_contract.to_address(), admin)
}
}
2 changes: 1 addition & 1 deletion src/utils/setup_pxe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const store = await createStore('pxe', {
});

export const setupPXE = async () => {
const pxe = await createPXEService(node, fullConfig, true, store);
const pxe = await createPXEService(node, fullConfig, {store});
await waitForPXE(pxe);
return pxe;
};
Loading