Skip to content
Snippets Groups Projects
Commit def8573b authored by Nikolay Volf's avatar Nikolay Volf Committed by GitHub
Browse files

fix docs deadlinks (#4698)

parent caa6efa5
No related merge requests found
...@@ -45,7 +45,7 @@ use parking_lot::Mutex; ...@@ -45,7 +45,7 @@ use parking_lot::Mutex;
/// The changes that need to applied to the storage to create the state for a block. /// The changes that need to applied to the storage to create the state for a block.
/// ///
/// See [`state_machine::StorageChanges`] for more information. /// See [`sp_state_machine::StorageChanges`] for more information.
pub type StorageChanges<Transaction, Block> = pub type StorageChanges<Transaction, Block> =
sp_state_machine::StorageChanges<Transaction, HasherFor<Block>, NumberFor<Block>>; sp_state_machine::StorageChanges<Transaction, HasherFor<Block>, NumberFor<Block>>;
......
...@@ -20,20 +20,20 @@ ...@@ -20,20 +20,20 @@
//! parts: //! parts:
//! //!
//! - A database containing the blocks and chain state, generally referred to as //! - A database containing the blocks and chain state, generally referred to as
//! the [`Backend`](backend::Backend). //! the [`Backend`](sc_client_api::backend::Backend).
//! - A runtime environment, generally referred to as the [`Executor`](CallExecutor). //! - A runtime environment, generally referred to as the [`Executor`](CallExecutor).
//! //!
//! # Initialization //! # Initialization
//! //!
//! Creating a [`Client`] is done by calling the `new` method and passing to it a //! Creating a [`Client`] is done by calling the `new` method and passing to it a
//! [`Backend`](backend::Backend) and an [`Executor`](CallExecutor). //! [`Backend`](sc_client_api::backend::Backend) and an [`Executor`](CallExecutor).
//! //!
//! The former is typically provided by the `sc-client-db` crate. //! The former is typically provided by the `sc-client-db` crate.
//! //!
//! The latter typically requires passing one of: //! The latter typically requires passing one of:
//! //!
//! - A [`LocalCallExecutor`] running the runtime locally. //! - A [`LocalCallExecutor`] running the runtime locally.
//! - A [`RemoteCallExecutor`](light::call_executor::RemoteCallExecutor) that will ask a //! - A [`RemoteCallExecutor`](light::call_executor::RemoteCallRequest) that will ask a
//! third-party to perform the executions. //! third-party to perform the executions.
//! - A [`RemoteOrLocalCallExecutor`](light::call_executor::RemoteOrLocalCallExecutor), combination //! - A [`RemoteOrLocalCallExecutor`](light::call_executor::RemoteOrLocalCallExecutor), combination
//! of the two. //! of the two.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment