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

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 @@ -25,12 +25,12 @@
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
},
"dependencies": {
"@aztec/accounts": "0.87.6",
"@aztec/aztec.js": "0.87.6",
"@aztec/noir-contracts.js": "0.87.6",
"@aztec/protocol-contracts": "0.87.6",
"@aztec/pxe": "0.87.6",
"@aztec/stdlib": "0.87.6"
"@aztec/accounts": "0.87.7",
"@aztec/aztec.js": "0.87.7",
"@aztec/noir-contracts.js": "0.87.7",
"@aztec/protocol-contracts": "0.87.7",
"@aztec/pxe": "0.87.7",
"@aztec/stdlib": "0.87.7"
},
"devDependencies": {
"@types/jest": "^29.5.11",
Expand Down
2 changes: 1 addition & 1 deletion src/test/first.nr
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ unconstrained fn test_initializer() {
let block_number = get_block_number();
let admin_slot = EasyPrivateVoting::storage_layout().admin.slot;
let admin_storage_value = storage_read(voting_contract_address, admin_slot, block_number);
assert(admin_storage_value == admin, "Admin address mismatch");
assert(admin_storage_value == admin, "Vote ended should be false");
}

#[test]
Expand Down
Loading