-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Cleanup unused imports and enforce Clippy lints #15
Cleanup unused imports and enforce Clippy lints #15
Conversation
@@ -1,449 +1,424 @@ | |||
#[cfg(test)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this module is already feature gated in main.rs
, so we don't need it again here
proof_size: 1_000_000, | ||
}), | ||
} | ||
use crate::polkadot_relay::runtime_types::frame_system::pallet::Call as PolkadotRelaySystemCall; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bad diff. just removes mod tests
, because the file already creates a module called tests
for this code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thank you
Fixes some clippy stuff and adds a CI check to prevent it occurring again.