Skip to content

Update changelog

Update changelog #42

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy-all-features failed Jul 13, 2023 in 0s

clippy-all-features

5 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 5
Warning 0
Note 0
Help 0

Versions

  • rustc 1.71.0 (8ede3aae2 2023-07-12)
  • cargo 1.71.0 (cfd3bbd8f 2023-06-08)
  • clippy 0.1.71 (8ede3aa 2023-07-12)

Annotations

Check failure on line 160 in tools/integration-test/src/mbt/transfer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

variable does not need to be mutable

error: variable does not need to be mutable
   --> tools/integration-test/src/mbt/transfer.rs:160:13
    |
160 |         for mut chain_config in config.chains.iter_mut() {
    |             ----^^^^^^^^^^^^
    |             |
    |             help: remove this `mut`

Check failure on line 31 in tools/integration-test/src/tests/manual/simulation.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

variable does not need to be mutable

error: variable does not need to be mutable
  --> tools/integration-test/src/tests/manual/simulation.rs:31:13
   |
31 |         for mut chain in config.chains.iter_mut() {
   |             ----^^^^^
   |             |
   |             help: remove this `mut`

Check failure on line 10 in tools/integration-test/src/tests/python.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

variable does not need to be mutable

error: variable does not need to be mutable
  --> tools/integration-test/src/tests/python.rs:10:13
   |
10 |         for mut chain in config.chains.iter_mut() {
   |             ----^^^^^
   |             |
   |             help: remove this `mut`

Check failure on line 27 in tools/integration-test/src/tests/memo.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

variable does not need to be mutable

error: variable does not need to be mutable
  --> tools/integration-test/src/tests/memo.rs:27:13
   |
27 |         for mut chain in config.chains.iter_mut() {
   |             ----^^^^^
   |             |
   |             help: remove this `mut`

Check failure on line 118 in tools/integration-test/src/tests/client_expiration.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-all-features

variable does not need to be mutable

error: variable does not need to be mutable
   --> tools/integration-test/src/tests/client_expiration.rs:118:13
    |
118 |         for mut chain_config in config.chains.iter_mut() {
    |             ----^^^^^^^^^^^^
    |             |
    |             help: remove this `mut`
    |
    = note: `-D unused-mut` implied by `-D warnings`