From 6761ef16551aade887b6667422465e4de3bd41d1 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 5 Jul 2019 15:43:16 +0200 Subject: [PATCH] core/finality: Ref `run_grandpa_voter` instead of deprecated func in doc (#3035) --- substrate/core/finality-grandpa/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/substrate/core/finality-grandpa/src/lib.rs b/substrate/core/finality-grandpa/src/lib.rs index 65c5f63308..534a5d9256 100644 --- a/substrate/core/finality-grandpa/src/lib.rs +++ b/substrate/core/finality-grandpa/src/lib.rs @@ -28,9 +28,9 @@ //! must pass through this wrapper, otherwise consensus is likely to break in //! unexpected ways. //! -//! Next, use the `LinkHalf` and a local configuration to `run_grandpa`. This requires a -//! `Network` implementation. The returned future should be driven to completion and -//! will finalize blocks in the background. +//! Next, use the `LinkHalf` and a local configuration to `run_grandpa_voter`. +//! This requires a `Network` implementation. The returned future should be +//! driven to completion and will finalize blocks in the background. //! //! # Changing authority sets //!