-
Notifications
You must be signed in to change notification settings - Fork 106
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
Fix Clippy and update Rust #299
Conversation
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
I just noticed in the last release that they are now built with 1.77, so the versions will need a bump again to keep fmt, clippy and the tests working with the same versions as the releases. |
I think fmt and clippy are supposed to run with nightly, since they have a lot of features not present in stable. |
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
By bumping versions I was suggesting to bump stable to |
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Review required! Latest push from author must always be reviewed |
@@ -80,7 +80,7 @@ const RETAIN_MAX_DECIDING: u32 = 25; | |||
const RETAIN_DECISION_DEPOSIT: Balance = 5 * DOLLARS; | |||
const RETAIN_PREPARE_PERIOD: BlockNumber = 0; | |||
const RETAIN_DECISION_PERIOD: BlockNumber = 14 * DAYS; | |||
const RETAIN_CONFIRM_PERIOD: BlockNumber = 1 * HOURS; |
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.
tbh, this seems like a downgrade in readability - can we suppress this lint?
/merge |
Enabled Available commands
For more information see the documentation |
Clippy warnings are now forbidden.
Changes:
allow(
s to suppress clippy.