From bc314c940dfd356eb3312c23c3463371da18c251 Mon Sep 17 00:00:00 2001 From: saki-osive <62865682+saki-osive@users.noreply.github.com> Date: Thu, 4 Feb 2021 17:02:12 +0530 Subject: [PATCH] Unused variable can be ignored (#2381) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Refactored the build steps for building with cargo * Cargo build step needs pre requisites not mentioned * Update README.md * unused variable can be explicity ignored Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> --- polkadot/node/service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/service/src/lib.rs b/polkadot/node/service/src/lib.rs index 5857ef3b8ca..d35935f6709 100644 --- a/polkadot/node/service/src/lib.rs +++ b/polkadot/node/service/src/lib.rs @@ -349,7 +349,7 @@ fn real_overseer<Spawner, RuntimeClient>( _: AvailabilityConfig, _: Arc<sc_network::NetworkService<Block, Hash>>, _: AuthorityDiscoveryService, - request_multiplexer: (), + _request_multiplexer: (), registry: Option<&Registry>, spawner: Spawner, _: IsCollator, -- GitLab