File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 2525#![ allow( clippy:: boxed_local) ]
2626#![ allow( clippy:: borrowed_box) ]
2727#![ allow( clippy:: unused_unit) ]
28+ #![ allow( clippy:: useless_conversion) ]
2829
2930use frame_support:: {
3031 dispatch:: PostDispatchInfo ,
Original file line number Diff line number Diff line change 1818// Disable the following two lints since they originate from an external macro (namely decl_storage)
1919#![ allow( clippy:: string_lit_as_bytes) ]
2020#![ allow( clippy:: unused_unit) ]
21+ #![ allow( clippy:: useless_conversion) ]
2122
2223use parity_scale_codec:: { Decode , Encode , MaxEncodedLen } ;
2324
Original file line number Diff line number Diff line change 5959//! When a payment is 'completed' or 'cancelled' it is removed from storage and
6060//! hence not tracked by a state.
6161#![ cfg_attr( not( feature = "std" ) , no_std) ]
62+ #![ allow( clippy:: useless_conversion) ]
6263pub use pallet:: * ;
6364
6465#[ cfg( test) ]
Original file line number Diff line number Diff line change 3636#![ cfg_attr( not( feature = "std" ) , no_std) ]
3737#![ allow( clippy:: unused_unit) ]
3838#![ allow( clippy:: comparison_chain) ]
39+ #![ allow( clippy:: useless_conversion) ]
3940
4041pub use crate :: imbalances:: { NegativeImbalance , PositiveImbalance } ;
4142
You can’t perform that action at this time.
0 commit comments