Skip to content
Snippets Groups Projects
Unverified Commit 19689f81 authored by wangjj9219's avatar wangjj9219 Committed by GitHub
Browse files

allow unnecessary_mut_passed warning (#216)

parent de36d169
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
#![cfg_attr(not(feature = "std"), no_std)]
// The `too_many_arguments` warning originates from `decl_runtime_apis` macro.
#![allow(clippy::too_many_arguments)]
// The `unnecessary_mut_passed` warning originates from `decl_runtime_apis` macro.
#![allow(clippy::unnecessary_mut_passed)]
use codec::Codec;
use sp_std::prelude::Vec;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment