Skip to content
Draft
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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions dev/local-net/prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ docker run --rm \
--nns-subnet-index "$SUBNET_IDX" \
--provisional-whitelist /bootstrap/.provisional_whitelist.json \
--use-specified-ids-allocation-range \
--dkg-interval-length 49 \
"${NODE_ARGS[@]}"

# Permissions: ic-prep wrote as root inside the container. Make the
Expand Down Expand Up @@ -139,6 +140,13 @@ for i in 0 1 2 3; do
crypto: {
crypto_root: "/etc/ic/crypto",
},
hypervisor: {
// Nano profile: threshold == subnet memory capacity disables the storage
// cycle-reservation mechanism; small reservation lets canisters allocate
// up to ~the full subnet memory capacity.
subnet_memory_threshold: 536870912,
subnet_memory_reservation: 16777216,
},
http_handler: {
listen_addr: "[::]:$HTTP_PORT",
},
Expand Down
1 change: 1 addition & 0 deletions rs/canister_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ url = { workspace = true }
[dev-dependencies]
hex = { workspace = true }
ic-certification-test-utils = { path = "../certification/test-utils" }
ic-universal-canister = { path = "../universal_canister/lib" }
ic-crypto-test-utils-reproducible-rng = { path = "../crypto/test_utils/reproducible_rng" }
ic-crypto-test-utils-root-of-trust = { path = "../crypto/test_utils/root_of_trust" }
ic-crypto-test-utils-tls = { path = "../crypto/test_utils/tls" }
Expand Down
Loading
Loading