diff --git a/blog/features/dfx-deploy-playground.md b/blog/features/dfx-deploy-playground.md index ce15aa127f..b21e1cf4a1 100644 --- a/blog/features/dfx-deploy-playground.md +++ b/blog/features/dfx-deploy-playground.md @@ -48,7 +48,7 @@ This command calls the `hello_world_backend` canister that has been deployed to Since the canister has been deployed to the playground, it is important to know the limitations that canisters deployed with the `--playground` flag will be subject to. These restrictions are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Wasm files can't be gzipped. - Wasm files will be analyzed to remove any potentially expensive/malicious operations. - Canisters can use at most 1GB of memory. diff --git a/blog/news-and-updates/2023-07-26-update.mdx b/blog/news-and-updates/2023-07-26-update.mdx index dd29cb6487..88956260cc 100644 --- a/blog/news-and-updates/2023-07-26-update.mdx +++ b/blog/news-and-updates/2023-07-26-update.mdx @@ -46,7 +46,7 @@ For our last topic today, we're going to briefly introduce a new upcoming featur It is important to note that canisters deployed with the `--playground` flag will be subject to the same restrictions as other canisters deployed to the Motoko playground. These restrictions are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Canisters can use at most 1GB of stable memory. - Canisters can call the management canister to manage itself without being the controller. - Deployed canisters expire after 20 minutes. diff --git a/docs/developer-docs/setup/playground.md b/docs/developer-docs/setup/playground.md index 0491dfe1e4..62d0dcf0d2 100644 --- a/docs/developer-docs/setup/playground.md +++ b/docs/developer-docs/setup/playground.md @@ -21,7 +21,7 @@ To ensure resources are used fairly by users, proof of work when a user makes a Since Motoko playground is designed for short, small-scale testing, there are limitations and restrictions imposed on canisters deployed to the playground. These limitations are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Canisters can use at most 1GB of memory. - Canisters can call the management canister to manage itself without being the controller. - Deployed canisters expire after 20 minutes. Upgrades to canisters reset this timer. When the timer runs out, the canister(s) will be uninstalled.