From 017dbc185fe471fa085fa1d77021c87ea266d738 Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Tue, 11 Jan 2022 01:26:35 +0100
Subject: [PATCH] fix clippy warnings

---
 integration-tests/src/balance_transfer.rs | 4 ++--
 node/src/cli.rs                           | 5 +++--
 node/src/service.rs                       | 2 +-
 pallets/identity/src/lib.rs               | 2 +-
 4 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/integration-tests/src/balance_transfer.rs b/integration-tests/src/balance_transfer.rs
index 7a5583e81..b10897ecc 100644
--- a/integration-tests/src/balance_transfer.rs
+++ b/integration-tests/src/balance_transfer.rs
@@ -33,7 +33,7 @@ async fn test_balance_transfer() -> Result<(), Box<dyn std::error::Error>> {
         api.tx()
             .balances()
             .transfer(dave.clone().into(), 512)
-            .create_signed(&alice, Default::default())
+            .create_signed(&alice, ())
             .await?,
     )
     .await?;
@@ -44,7 +44,7 @@ async fn test_balance_transfer() -> Result<(), Box<dyn std::error::Error>> {
     );
 
     // verify that Bob's free Balance increased
-    let dave_post = api.storage().system().account(dave.into(), None).await?;
+    let dave_post = api.storage().system().account(dave, None).await?;
     println!("Bob's Free Balance is now {}\n", dave_post.data.free);
     assert_eq!(dave_post.data.free, 512);
 
diff --git a/node/src/cli.rs b/node/src/cli.rs
index 12d504002..60d8cfe38 100644
--- a/node/src/cli.rs
+++ b/node/src/cli.rs
@@ -82,8 +82,9 @@ impl FromStr for Sealing {
             "instant" => Self::Instant,
             "manual" => Self::Manual,
             s => {
-                let millis =
-                    u64::from_str_radix(s, 10).map_err(|_| "couldn't decode sealing param")?;
+                let millis = s
+                    .parse::<u64>()
+                    .map_err(|_| "couldn't decode sealing param")?;
                 Self::Interval(millis)
             }
         })
diff --git a/node/src/service.rs b/node/src/service.rs
index 6973b8cad..e4833286d 100644
--- a/node/src/service.rs
+++ b/node/src/service.rs
@@ -241,7 +241,7 @@ where
 
     let (client, backend, keystore_container, task_manager) =
         sc_service::new_full_parts::<Block, RuntimeApi, _>(
-            &config,
+            config,
             telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()),
             executor,
         )?;
diff --git a/pallets/identity/src/lib.rs b/pallets/identity/src/lib.rs
index 51b62b76d..a11aaba47 100644
--- a/pallets/identity/src/lib.rs
+++ b/pallets/identity/src/lib.rs
@@ -15,6 +15,7 @@
 // along with Substrate-Libre-Currency. If not, see <https://www.gnu.org/licenses/>.
 
 #![cfg_attr(not(feature = "std"), no_std)]
+#![allow(clippy::type_complexity)]
 
 pub mod traits;
 mod types;
@@ -161,7 +162,6 @@ pub mod pallet {
     >;
 
     // GENESIS //
-
     #[pallet::genesis_config]
     pub struct GenesisConfig<T: Config> {
         pub identities:
-- 
GitLab