Optimism L1 -> L2 derivation #177
Triggered via pull request
November 21, 2023 22:14
Status
Failure
Total duration
12m 27s
Artifacts
–
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
3 errors
[clippy] lib/src/optimism/deposits.rs#L87:
lib/src/optimism/deposits.rs#L87
error: unneeded `return` statement
--> lib/src/optimism/deposits.rs:87:5
|
87 | return true; // TODO: remove me!
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `-D clippy::needless-return` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return)]`
help: remove `return`
|
87 - return true; // TODO: remove me!
87 + true// TODO: remove me!
|
|
[clippy] lib/src/optimism/system_config.rs#L140:
lib/src/optimism/system_config.rs#L140
error: unneeded `return` statement
--> lib/src/optimism/system_config.rs:140:5
|
140 | return true; // TODO: remove me!
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
140 - return true; // TODO: remove me!
140 + true// TODO: remove me!
|
|
clippy
reviewdog exited with status code: 1
|