fix namings and links (#91)

* fix namings and links
This commit is contained in:
Özgün Özerk
2024-01-08 12:35:14 +03:00
committed by GitHub
parent 6ed505bde4
commit 4cdd8ce35c
4 changed files with 14 additions and 13 deletions
+8 -7
View File
@@ -3,15 +3,16 @@
* Runtime Descriptions
** xref:runtime/xcm_executor.adoc[XCM Executor]
* Pallet Specifications
** xref:pallets/transaction_payment.adoc[pallet_transaction_payment]
** xref:pallets/pallet_xcm.adoc[pallet_xcm]
** xref:pallets/proxy.adoc[pallet_proxy]
** xref:pallets/multisig.adoc[pallet_multisig]
** xref:pallets/message-queue.adoc[pallet_message_queue]
** xref:pallets/aura_ext.adoc[cumulus_aura_ext]
** xref:pallets/collator-selection.adoc[collator_selection]
** xref:pallets/parachain-system.adoc[parachain_system]
** xref:pallets/balances.adoc[pallet_balances]
** xref:pallets/aura_ext.adoc[cumulus_pallet_aura_ext]
** xref:pallets/parachain-system.adoc[cumulus_pallet_parachain_system]
** xref:pallets/xcmp-queue.adoc[cumulus_pallet_xcmp_queue]
** xref:pallets/balances.adoc[pallet_balances]
** xref:pallets/message-queue.adoc[pallet_message_queue]
** xref:pallets/multisig.adoc[pallet_multisig]
** xref:pallets/proxy.adoc[pallet_proxy]
** xref:pallets/transaction_payment.adoc[pallet_transaction_payment]
** xref:pallets/xcm.adoc[pallet_xcm]
* Appendix
** xref:glossary.adoc[Glossary]
@@ -2,7 +2,7 @@
:highlightjs-languages: rust
:github-icon: pass:[<svg class="icon"><use href="#github-icon"/></svg>]
= cumulus_aura_ext
= cumulus_pallet_aura_ext
Branch/Release: `release-polkadot-v1.3.0`
@@ -18,9 +18,9 @@ This pallet integrates parachains own block production mechanism (for example
There is no special config for this integration and it has no dispatchables, but you need to integrate it with other `parachain-system` crate:
=== Integrate `BlockExecutor`
When you invoke the `register_validate_block` macro, you should provide `cumulus_pallet_aura_ext::BlockExecutor` to it to allow `aura-ext` to validate the blocks produced by `aura`
[source, rust]
----
cumulus_pallet_parachain_system::register_validate_block! {
@@ -28,9 +28,9 @@ cumulus_pallet_parachain_system::register_validate_block! {
BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,
}
----
=== Integrate `ConsensusHook`
Also you might want to manage the consensus externally and control the segment that is not yet included (its capacity, speed and etc.) `aura-ext` provides the `FixedVelocityConsensusHook` that allows to check if we are still in the limits for the slot.
[source, rust]
@@ -2,7 +2,7 @@
:highlightjs-languages: rust
:github-icon: pass:[<svg class="icon"><use href="#github-icon"/></svg>]
= pallet_transaction_payment
= cumulus_pallet_parachain_system
Branch/Release: `release-polkadot-v1.3.0`