Upgrade a Running Network
Illustrates ways you can update a running node.
Last updated
Illustrates ways you can update a running node.
Last updated
Unlike many blockchains, the Substrate development framework supports forkless upgrades to the runtime that is the core of the blockchain. Most blockchain projects require a of the code base to support ongoing development of new features or enhancements to existing features. With Substrate, you can deploy enhanced runtime capabilities—including breaking changes—without a hard fork. Because the definition of the runtime is itself an element in the state of a Substrate-based chain, network participants can update this value by calling the function in a transaction. Because updates to the runtime state are validated using the blockchain's consensus mechanisms and cryptographic guarantees, network participants can use the blockchain itself to distribute updated or extended runtime logic without needing to fork the chain or release a new blockchain client.
This tutorial illustrates how to upgrade the runtime without creating a fork of the code base or stopping the progress of the chain. In this tutorial, you'll make the following changes to a Substrate runtime on a running network node:
Increase the spec_version
of the runtime.
Add the Utility pallet to the runtime.
Increase the minimum balance for network accounts.
Before you begin, verify the following:
You have configured your environment for Substrate development by installing .
You have completed and have the Substrate node template installed locally.
You have reviewed for an introduction to adding a new pallet to the runtime.
By completing this tutorial, you will accomplish the following objectives:
Use the Sudo pallet to simulate governance for a chain upgrade.
Upgrade the runtime for a running node to include a new pallet.
Submit a transaction to upload the modified runtime onto a running node.
Typically, runtime upgrades are managed through governance with community members voting to approve or reject upgrade proposals. In place of governance, this tutorial uses the Sudo pallet and the Root
origin to identify the runtime administrator with permission to upgrade the runtime. Only this root-level administrator can update the runtime by calling the set_code
function. The Sudo pallet enables you to invoke the set_code
function using the Root
origin by specifying the account that has root-level administrative permissions.
By default, the chain specification file for the node template specifies that the alice
development account is the owner of the Sudo administrative account. Therefore, this tutorial uses the alice
account to perform runtime upgrades.
The weight annotation for the set_code
function also specifies that the function is in the Operational
class because it provides network capabilities. Function calls that are identified as operational:
Can consume the entire weight limit of a block.
Are given maximum priority.
Are exempt from paying transaction fees.
This tutorial illustrates how to update a running node, so the first step is to start the local node with the current runtime.
To start the node with the current runtime:
Open a terminal shell on your computer.
Change to the root directory where you compiled the Substrate node template.
Start the previously-compiled local node in development mode by running the following command:
Leave this node running. You can edit and re-compile to upgrade the runtime without stopping or restarting the running node.
Click the left-most dropdown menu to select the network.
Under Development, select Local Node, then click Switch.
In the upper left, notice the node template version is the default version 100.
To update the dependencies for the runtime to include the Utility pallet:
Open a second terminal shell window or tab.
Change to the root directory where you compiled the Substrate node template.
Open the runtime/Cargo.toml
file in a text editor.
Locate the [dependencies]
section.
For example:
Add the Utility pallet as a dependency.
For example, add a single line with the following fields:
Locate the [features]
section and the list of the default features for the standard binary.
For example:
Add the Utility pallet to the list.
Save your changes and close the Cargo.toml
file.
To add the Utility types and configuration trait:
Open the runtime/src/lib.rs
file in a text editor.
Add the implementation for the Config trait for the Utility pallet.
Locate the construct_runtime!
macro.
Add the Utility pallet inside the construct_runtime!
macro.
Locate the runtime_version
macro.
Update the value for the EXISTENTIAL_DEPOSIT for the Balances pallet.
The fields for the runtime_version
specify the following information:
spec_name
specifies the name of the runtime.
impl_name
specifies the name of the outer node client.
spec_version
specifies the version of the runtime.
impl_version
specifies the version of the outer node client.
apis
specifies the list of supported APIs.
state_version
specifies the version of the key-value trie data structure that the runtime uses.
Save your changes and close the runtime/src/lib.rs
file.
Verify that the local node continues to run in the first terminal.
In the second terminal where you updated the runtime Cargo.toml
and lib.rs
files, recompile the runtime by running the following command
The --release
command-line option requires a longer compile time. However, it generates a smaller build artifact that is better suited for submitting to the blockchain network. Storage optimization is critical for any blockchain. With this command, the build artifacts are output to the target/release
directory. The WebAssembly build artifacts are in the target/release/wbuild/node-template-runtime
directory. For example, you should see the following WebAssembly artifacts:
You now have a WebAssembly artifact that describes the modified runtime logic. However, the running node isn't using the upgraded runtime yet. To complete the upgrade, you need to submit a transaction that updates the node to use the upgraded runtime.
To update the network with the upgraded runtime:
Click Developer and select Extrinsics to submit a transaction for the runtime to use the new build artifact.
Select the administrative Alice account.
Select the sudo pallet and the sudoUncheckedWeight(call, weight) function.
Select system and setCode(code) as the call to make using the Alice account.
Click file upload, then select or drag and drop the compact and compressed WebAssembly file—node_template_runtime.compact.compressed.wasm
—that you generated for the updated runtime.
For example, navigate to the target/release/wbuild/node-template-runtime
directory and select node_template_runtime.compact.compressed.wasm
as the file to upload.
Leave both of the weight parameters set to the default value of 0
.
Click Submit Transaction.
Review the authorization, then click Sign and Submit.
Click Network and select Explorer to see that there has been a successful sudo.Sudid
event.
After the transaction is included in a block, the node template version number indicates that the runtime version is now 101
. For example:
If your local node is producing blocks in the terminal that match what is displayed in the browser, you have completed a successful runtime upgrade.
Click Developer and select Extrinsics. Click on submit the following extrinsic and scroll to the bottom of the list. You will see utility as an option.
Click Developer and select Chain state.
Click Constants.
Select the balances pallet.
Select existentialDeposit as the constant value as the value to query.
Function calls that are dispatched to the Substrate runtime are always associated with a to account for resource usage. The FRAME System module sets boundaries on the block length and block weight that these transactions can use. However, the set_code
function is intentionally designed to consume the maximum weight that can fit in a block. Forcing a runtime upgrade to consume an entire block prevents transactions in the same block from executing on different versions of a runtime.
In this tutorial, the function is used to invoke the set_code
function for the runtime upgrade. The sudo_unchecked_weight
function is the same as the sudo
function except that it supports an additional parameter to specify the weight to use for the call. This parameter enables you to work around resource accounting safeguards to specify a weight of zero for the call that dispatches the set_code
function. This setting allows for a block to take an indefinite time to compute to ensure that the runtime upgrade does not fail, no matter how complex the operation is. It can take all the time it needs to succeed or fail.
By default, the node template doesn't include the in its runtime. To illustrate a runtime upgrade, you can add the Utility pallet to a running node.
Open the in a browser and connect to the local node.
This change increases the minimum balance an account is required to have on deposit to be viewed as a valid active account. This change doesn't remove any accounts with balances between 500 and 1000. Removing accounts would require a storage migration. For information about upgrading data storage, see
Increment the to specify the new runtime version.
authoring_version
specifies the version for .
transaction_version
specifies the version of the interface.
To upgrade the runtime, you must increase the spec_version
. For more information, see the module and the can_set_code
method.
Open the in a browser and connect to the local node.
Verify the constant value by querying the chain state in the .