From b239756d2964b0579ffc825b3815bf0273c3163c Mon Sep 17 00:00:00 2001 From: wangjj9219 <183318287@qq.com> Date: Mon, 16 Nov 2020 20:42:25 +0800 Subject: [PATCH] fix clippy warning by latest nightly rust version (#319) --- auction/src/default_weight.rs | 1 + authority/src/default_weight.rs | 1 + currencies/src/default_weight.rs | 1 + gradually-update/src/default_weight.rs | 1 + oracle/src/default_weight.rs | 1 + rewards/src/default_weight.rs | 1 + tokens/src/default_weight.rs | 1 + vesting/src/default_weight.rs | 1 + 8 files changed, 8 insertions(+) diff --git a/auction/src/default_weight.rs b/auction/src/default_weight.rs index 8ba27da..84a711a 100644 --- a/auction/src/default_weight.rs +++ b/auction/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/authority/src/default_weight.rs b/authority/src/default_weight.rs index db8e5af..818c050 100644 --- a/authority/src/default_weight.rs +++ b/authority/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/currencies/src/default_weight.rs b/currencies/src/default_weight.rs index a8ff56c..079c8ce 100644 --- a/currencies/src/default_weight.rs +++ b/currencies/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/gradually-update/src/default_weight.rs b/gradually-update/src/default_weight.rs index 53b6b68..8ceb09e 100644 --- a/gradually-update/src/default_weight.rs +++ b/gradually-update/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/oracle/src/default_weight.rs b/oracle/src/default_weight.rs index dd88c48..d910445 100644 --- a/oracle/src/default_weight.rs +++ b/oracle/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/rewards/src/default_weight.rs b/rewards/src/default_weight.rs index 51c60f6..a2be6a5 100644 --- a/rewards/src/default_weight.rs +++ b/rewards/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/tokens/src/default_weight.rs b/tokens/src/default_weight.rs index 00aa6d1..e46bf56 100644 --- a/tokens/src/default_weight.rs +++ b/tokens/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; diff --git a/vesting/src/default_weight.rs b/vesting/src/default_weight.rs index dc055d8..9a40080 100644 --- a/vesting/src/default_weight.rs +++ b/vesting/src/default_weight.rs @@ -2,6 +2,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] +#![allow(clippy::unnecessary_cast)] use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight}; -- GitLab