Skip to content

Commit

Permalink
Cycles limit too low error
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiemongeon1 committed Oct 23, 2024
1 parent 257f7e5 commit f9f7400
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/references/execution-errors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.).
Expand Down

0 comments on commit f9f7400

Please sign in to comment.