From 17f858a67703d2acc818e992109763c53c4da878 Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Thu, 8 Feb 2024 04:01:59 -0600 Subject: [PATCH] fixup: skip non-upgradable ValueCell listing --- main/guides/zoe/contract-upgrade.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/main/guides/zoe/contract-upgrade.md b/main/guides/zoe/contract-upgrade.md index b00182d8c..5be93d983 100644 --- a/main/guides/zoe/contract-upgrade.md +++ b/main/guides/zoe/contract-upgrade.md @@ -16,14 +16,10 @@ Governance of the right to upgrade is a complex topic that we cover only briefly could, in theory, change the VM itself.) - The `adminFacet` can be shared with a governance contract such as `committee.js`. -Upgrading a contract instance means re-starting the contract using a different code bundle. Suppose we take our `ValueCell` contract ... - -::: details ValueCell contract - -<<< @/snippets/zoe/src/02-state.js#startfn ::: -... and start it as usual: +Upgrading a contract instance means re-starting the contract using a different code bundle. Suppose start a contract as usual, using +the bundle ID of a bundle we already sent to the chain: ```js const bundleID = 'b1-1234abcd...';