We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add the following clippy lints into Cargo.toml in all pallets utilizing on_initalize :
Cargo.toml
on_initalize
[lints.clippy] arithmetic_side_effects = "deny" indexing_slicing = "deny" panicking_unwrap = "deny" out_of_bounds_indexing = "deny"
This will help us improve blockchain safety. Making sure runtime can not panic in on-initilize hook, halting the block production.
The text was updated successfully, but these errors were encountered:
The bulk of this is covered here: #485
cc @keithtensor
Sorry, something went wrong.
No branches or pull requests
Please add the following clippy lints into
Cargo.toml
in all pallets utilizingon_initalize
:This will help us improve blockchain safety. Making sure runtime can not panic in on-initilize hook, halting the block production.
The text was updated successfully, but these errors were encountered: