From f9f74006b20441158a45e7bd8adc91f0f49155e7 Mon Sep 17 00:00:00 2001 From: Jessie Mongeon Date: Wed, 23 Oct 2024 11:48:31 -0500 Subject: [PATCH] Cycles limit too low error --- docs/references/execution-errors.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/references/execution-errors.mdx b/docs/references/execution-errors.mdx index 517181475e..6d766a6e4f 100644 --- a/docs/references/execution-errors.mdx +++ b/docs/references/execution-errors.mdx @@ -629,6 +629,17 @@ To diagnose this error, use the [`dfx canister status`][dfx-canister-status] com To fix this error, consider increasing the canister's reserved cycles limit, or moving it to a subnet with lower memory usage. +### Reserved cycles limit is too low + +There was an attempt to update the canister's settings and change the reserved cycles limit field to a value that is lower than the already reserved cycles balance of the canister. + +An example of this error is: + +``` + Cannot set the reserved cycles limit 1000 below the reserved cycles balance of the canister 2000. +``` + +To fix this error, increase the reserved cycles limit to be above the reported reserved cycles balance. ### Wasm chunk store error There was an error while executing a method to manipulate the canister's [Wasm chunk store](/docs/current/references/ic-interface-spec#ic-upload_chunk) (e.g. `upload_chunk`, `clear_chunk_store`, `install_chunked_code`, etc.).