Fix cargo command arg (#985) #6
Annotations
4 warnings
deploy-docs:
pallets/shards/src/lib.rs#L2
warning: unresolved link to `InvalidCommitment`
--> pallets/shards/src/lib.rs:2:1
|
2 | / //! # Timechain Shards Pallet
3 | | //!
4 | | //! The Shards pallet manages the lifecycle of shards in a decentralized network. It handles the
5 | | //! creation, commitment, readiness, and offline status of shards, along with managing shard members
... |
63 | | //!
64 | | #![doc = simple_mermaid::mermaid!("../docs/shard_hook.mmd")]
| |____________________________________________________________^
|
= note: the link appears in this line:
[`InvalidCommitment`] error. A valid commitment is stored, followed by a check to see if all
^^^^^^^^^^^^^^^^^^^
= note: no item named `InvalidCommitment` in scope
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
= note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default
|
deploy-docs:
pallets/shards/src/lib.rs#L282
warning: unresolved link to `Ready`
--> pallets/shards/src/lib.rs:282:3
|
282 | / /// Marks a shard as ready when a member indicates readiness after commitment.
283 | | ///
284 | | /// # Flow
285 | | /// 1. Ensure the origin is a signed transaction and the sender has committed.
... |
288 | | /// 4. If all members are ready, update the state of the shard to `Online` and emit the [`Event::ShardOnline`] event.
289 | | /// 5. Notify the task scheduler that the shard is online.
| |____________________________________________________________________^
|
= note: the link appears in this line:
3. Update the status of the shard to [`Ready`].
^^^^^^^
= note: no item named `Ready` in scope
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
|
deploy-docs:
pallets/shards/src/lib.rs#L217
warning: unresolved link to `Ready`
--> pallets/shards/src/lib.rs:217:12
|
217 | #[pallet::call]
| ^^^^
|
= note: the link appears in this line:
3. Update the status of the shard to [`Ready`].
^^^^^^^
= note: no item named `Ready` in scope
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
|
deploy-docs:
docs/src/lib.rs#L9
warning: unresolved link to `timechain_node`
--> docs/src/lib.rs:9:37
|
9 | //! Babe and Grandpa to power its [`timechain_node`] and [`timechain_runtime`].
| ^^^^^^^^^^^^^^ no item named `timechain_node` in scope
|
= help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
note: the lint level is defined here
--> docs/src/lib.rs:23:9
|
23 | #![warn(rustdoc::broken_intra_doc_links)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|