Skip to content

Commit beea0f3

Browse files
authored
Merge pull request #99 from AztecProtocol/jc/87.4
update to 87.4
2 parents 795e71a + 55ae295 commit beea0f3

File tree

8 files changed

+245
-244
lines changed

8 files changed

+245
-244
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Set Aztec version and start sandbox
3636
run: |
37-
VERSION=0.87.2 aztec-up
37+
VERSION=0.87.4 aztec-up
3838
aztec start --sandbox &
3939
4040
- name: Install project dependencies

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = [ "" ]
55
compiler_version = ">=0.18.0"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.2", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.4", directory = "noir-projects/aztec-nr/aztec" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bash -i <(curl -s https://install.aztec.network)
4747
Install the correct version of the toolkit with:
4848

4949
```bash
50-
aztec-up 0.87.2
50+
aztec-up 0.87.4
5151
```
5252

5353
Start the sandbox with:

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
2525
},
2626
"dependencies": {
27-
"@aztec/accounts": "0.87.2",
28-
"@aztec/aztec.js": "0.87.2",
29-
"@aztec/noir-contracts.js": "0.87.2",
30-
"@aztec/protocol-contracts": "0.87.2",
31-
"@aztec/pxe": "0.87.2",
32-
"@aztec/stdlib": "0.87.2"
27+
"@aztec/accounts": "0.87.4",
28+
"@aztec/aztec.js": "0.87.4",
29+
"@aztec/noir-contracts.js": "0.87.4",
30+
"@aztec/protocol-contracts": "0.87.4",
31+
"@aztec/pxe": "0.87.4",
32+
"@aztec/stdlib": "0.87.4"
3333
},
3434
"devDependencies": {
3535
"@types/jest": "^29.5.11",

scripts/multiple_pxe.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ const store2 = await createStore('pxe2', {
2525
});
2626

2727
const setupPxe1 = async () => {
28-
const pxe = await createPXEService(node, fullConfig, true, store1);
28+
const pxe = await createPXEService(node, fullConfig, {store: store1});
2929
await waitForPXE(pxe);
3030
return pxe;
3131
};
3232

3333
const setupPxe2 = async () => {
34-
const pxe = await createPXEService(node, fullConfig, true, store2);
34+
const pxe = await createPXEService(node, fullConfig, {store: store2});
3535
await waitForPXE(pxe);
3636
return pxe;
3737
};

src/test/utils.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ pub unconstrained fn setup() -> (&mut TestEnvironment, AztecAddress, AztecAddres
1515

1616
env.advance_block_by(1);
1717
(&mut env, voting_contract.to_address(), admin)
18-
}
18+
}

src/utils/setup_pxe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const store = await createStore('pxe', {
1616
});
1717

1818
export const setupPXE = async () => {
19-
const pxe = await createPXEService(node, fullConfig, true, store);
19+
const pxe = await createPXEService(node, fullConfig, {store});
2020
await waitForPXE(pxe);
2121
return pxe;
2222
};

0 commit comments

Comments
 (0)