Skip to content

Commit 4de814c

Browse files
authored
Merge pull request #111 from AztecProtocol/nightly/update-v0.87.7
Update to v0.87.7
2 parents 95cd5c8 + e1a85ba commit 4de814c

File tree

5 files changed

+226
-226
lines changed

5 files changed

+226
-226
lines changed

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.6", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.7", 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.6
50+
aztec-up 0.87.7
5151
```
5252

5353
Start the sandbox with:

package.json

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

src/test/first.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ unconstrained fn test_initializer() {
1111
let block_number = get_block_number();
1212
let admin_slot = EasyPrivateVoting::storage_layout().admin.slot;
1313
let admin_storage_value = storage_read(voting_contract_address, admin_slot, block_number);
14-
assert(admin_storage_value == admin, "Admin address mismatch");
14+
assert(admin_storage_value == admin, "Vote ended should be false");
1515
}
1616

1717
#[test]

0 commit comments

Comments
 (0)