Skip to content
Snippets Groups Projects
Commit b9926776 authored by Svyatoslav Nikolsky's avatar Svyatoslav Nikolsky Committed by Bastian Köcher
Browse files

fix clippy (#1668)

parent ea981180
Branches
No related merge requests found
......@@ -131,7 +131,7 @@ where
.await?
.map(|para_info| para_info.best_head_hash);
if let (Some(metrics), &Some(ref best_para_head_hash)) = (metrics, &best_para_head_hash) {
if let (Some(metrics), Some(best_para_head_hash)) = (metrics, &best_para_head_hash) {
let imported_para_head = self
.client
.storage_double_map_value::<ImportedParaHeadsKeyProvider>(
......
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