Skip to content

Commit

Permalink
fix: shrink enclave size of zksync-tee-prover (#2609)
Browse files Browse the repository at this point in the history
## What ❔

Shrink the enclave size of `zksync-tee-prover`.

## Why ❔

32G was a bit of safe guard while testing. 8G seems to be enough and
will fit better the memory size of the Azure nodes.

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [x] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [x] Code has been formatted via `zk fmt` and `zk lint`.

Signed-off-by: Harald Hoyer <[email protected]>
  • Loading branch information
haraldh authored Aug 15, 2024
1 parent 87e2c5a commit b40f3d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/nix/container-tee_prover.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ nixsgxLib.mkSGXContainer {

sgx = {
edmm_enable = false;
enclave_size = "32G";
enclave_size = "8G";
max_threads = 128;
};
};
Expand Down

0 comments on commit b40f3d1

Please sign in to comment.