remove recursion limit (#3348)

According to the
[doc](https://doc.rust-lang.org/reference/attributes/limits.html), the
default is 128, so no point to specify limit with 128

Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
Xiliang Chen
2024-02-17 01:39:42 +13:00
committed by GitHub
parent b8ad0d1f56
commit 34352e82cf
6 changed files with 0 additions and 7 deletions
-1
View File
@@ -40,7 +40,6 @@
//! If there are not, or if no prime is set, then the motion is dropped without being executed.
#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "128"]
use codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;