You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: develop/parachains/maintenance/configure-asynchronous-backing.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
-
title: Asynchronous Backing
3
-
description: Learn how to increase the efficiency and throughput of your parachain by upgrading it to leverage asynchronous backing.
2
+
title: Configure Asynchronous Backing
3
+
description: Learn how to increase the efficiency and throughput of your parachain by configuring it to leverage asynchronous backing.
4
4
---
5
5
6
-
# Upgrade Parachain for Asynchronous Backing Compatibility
6
+
# Configure Parachain for Asynchronous Backing Compatibility
7
7
8
8
## Introduction
9
9
@@ -93,6 +93,8 @@ This phase involves configuring your parachain's runtime `/runtime/src/lib.rs` t
93
93
94
94
5.Configure [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} in the runtime.
95
95
96
+
[`pallet_aura`]((https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank}) implements Authority Round (Aura) - a deterministic [consensus](https://docs.polkadot.com/polkadot-protocol/glossary/#consensus){target=\_blank} protocol where block production is limited to a rotating list of authorities that take turns creating blocks. [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} uses [`pallet_timestamp`](https://paritytech.github.io/polkadot-sdk/master/pallet_timestamp/index.html){target=\_blank} to track consensus rounds (via [`slots`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.SlotDuration){target=\_blank}).
97
+
96
98
-Set [`AllowMultipleBlocksPerSlot`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.AllowMultipleBlocksPerSlot){target=\_blank} to `false`
description: Learn how to increase the efficiency and throughput of your parachain by upgrading it to leverage asynchronous backing.
5389
+
title: Configure Asynchronous Backing
5390
+
description: Learn how to increase the efficiency and throughput of your parachain by configuring it to leverage asynchronous backing.
5391
5391
---
5392
5392
5393
-
# Upgrade Parachain for Asynchronous Backing Compatibility
5393
+
# Configure Parachain for Asynchronous Backing Compatibility
5394
5394
5395
5395
## Introduction
5396
5396
@@ -5480,6 +5480,8 @@ This phase involves configuring your parachain's runtime `/runtime/src/lib.rs` t
5480
5480
5481
5481
5. Configure [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} in the runtime.
5482
5482
5483
+
[`pallet_aura`]((https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank}) implements Authority Round (Aura) - a deterministic [consensus](https://docs.polkadot.com/polkadot-protocol/glossary/#consensus){target=\_blank} protocol where block production is limited to a rotating list of authorities that take turns creating blocks. [`pallet_aura`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/index.html){target=\_blank} uses [`pallet_timestamp`](https://paritytech.github.io/polkadot-sdk/master/pallet_timestamp/index.html){target=\_blank} to track consensus rounds (via [`slots`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.SlotDuration){target=\_blank}).
5484
+
5483
5485
- Set [`AllowMultipleBlocksPerSlot`](https://paritytech.github.io/polkadot-sdk/master/pallet_aura/pallet/trait.Config.html#associatedtype.AllowMultipleBlocksPerSlot){target=\_blank} to `false`
5484
5486
- We will set it to `true` when we activate async backing in phase 3
0 commit comments