Skip to content

Testnet 7.1 staging #636

Testnet 7.1 staging

Testnet 7.1 staging #636

GitHub Actions / clippy failed Feb 12, 2024 in 1s

clippy

6 errors

Details

Results

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

Versions

  • rustc 1.71.0-nightly (c4190f2d3 2023-05-07)
  • cargo 1.71.0-nightly (569b648b5 2023-05-05)
  • clippy 0.1.71 (c4190f2 2023-05-07)

Annotations

Check failure on line 202 in src/cosmos.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`

error: useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`
   --> src/cosmos.rs:196:22
    |
196 |           let op_key = Pubkey::try_from_slice(
    |  ______________________^
197 | |             proto::cosmos::crypto::secp256k1::PubKey::from_any(&op_key_any)
198 | |                 .map_err(|_| OrgaError::App("Invalid public key".to_string()))?
199 | |                 .key
200 | |                 .as_slice(),
201 | |         )?
202 | |         .into();
    | |_______________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
help: consider removing `.into()`
    |
196 ~         let op_key = Pubkey::try_from_slice(
197 +             proto::cosmos::crypto::secp256k1::PubKey::from_any(&op_key_any)
198 +                 .map_err(|_| OrgaError::App("Invalid public key".to_string()))?
199 +                 .key
200 +                 .as_slice(),
201 ~         )?;
    |

Check failure on line 185 in src/bitcoin/threshold_sig.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`

error: useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`
   --> src/bitcoin/threshold_sig.rs:185:17
    |
185 |                 signatory.pubkey.into(),
    |                 ^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `signatory.pubkey`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion

Check failure on line 253 in src/bitcoin/signatory.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`

error: useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`
   --> src/bitcoin/signatory.rs:253:25
    |
253 |                 pubkey: pubkey.into(),
    |                         ^^^^^^^^^^^^^ help: consider removing `.into()`: `pubkey`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion

Check failure on line 238 in src/bitcoin/signatory.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`

error: useless conversion to the same type: `bitcoin::threshold_sig::Pubkey`
   --> src/bitcoin/signatory.rs:238:25
    |
238 |                 pubkey: pubkey.into(),
    |                         ^^^^^^^^^^^^^ help: consider removing `.into()`: `pubkey`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
    = note: `-D clippy::useless-conversion` implied by `-D warnings`

Check failure on line 14 in src/bitcoin/threshold_sig.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `orga::query::FieldQuery`

error: unused import: `orga::query::FieldQuery`
  --> src/bitcoin/threshold_sig.rs:14:5
   |
14 | use orga::query::FieldQuery;
   |     ^^^^^^^^^^^^^^^^^^^^^^^

Check failure on line 13 in src/bitcoin/threshold_sig.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `orga::prelude::FieldCall`

error: unused import: `orga::prelude::FieldCall`
  --> src/bitcoin/threshold_sig.rs:13:5
   |
13 | use orga::prelude::FieldCall;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D unused-imports` implied by `-D warnings`