Skip to content

Update secp256k1 requirement from 0.27.0 to 0.28.0 #1073

Update secp256k1 requirement from 0.27.0 to 0.28.0

Update secp256k1 requirement from 0.27.0 to 0.28.0 #1073

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy failed Dec 12, 2023 in 0s

clippy

4 errors

Details

Results

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

Versions

  • rustc 1.75.0-beta.5 (1a06ac5b5 2023-12-01)
  • cargo 1.75.0-beta.5 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (1a06ac5 2023-12-01)

Annotations

Check failure on line 34 in cw-orch-daemon/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused imports: `authz::v1beta1 as authz`, `crisis::v1beta1 as crisis`, `distribution::v1beta1 as distribution`, `evidence::v1beta1 as evidence`, `mint::v1beta1 as mint`, `params::v1beta1 as params`, `slashing::v1beta1 as slashing`, `v1beta1 as base`

error: unused imports: `authz::v1beta1 as authz`, `crisis::v1beta1 as crisis`, `distribution::v1beta1 as distribution`, `evidence::v1beta1 as evidence`, `mint::v1beta1 as mint`, `params::v1beta1 as params`, `slashing::v1beta1 as slashing`, `v1beta1 as base`
  --> cw-orch-daemon/src/lib.rs:34:13
   |
34 |             authz::v1beta1 as authz,
   |             ^^^^^^^^^^^^^^^^^^^^^^^
35 |             bank::v1beta1 as bank,
36 |             base::{abci::v1beta1 as abci, tendermint::v1beta1 as tendermint, v1beta1 as base},
   |                                                                              ^^^^^^^^^^^^^^^
37 |             crisis::v1beta1 as crisis,
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^
38 |             distribution::v1beta1 as distribution,
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 |             evidence::v1beta1 as evidence,
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
42 |             mint::v1beta1 as mint,
   |             ^^^^^^^^^^^^^^^^^^^^^
43 |             params::v1beta1 as params,
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^
44 |             slashing::v1beta1 as slashing,
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D unused-imports` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_imports)]`

Check failure on line 13 in cw-orch-daemon/src/tx_builder.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `secp256k1::All`

error[E0432]: unresolved import `secp256k1::All`
  --> cw-orch-daemon/src/tx_builder.rs:13:5
   |
13 | use secp256k1::All;
   |     ^^^^^^^^^^^^^^ no `All` in the root
   |
help: consider importing one of these items instead
   |
13 | use bitcoin::network::message_bloom::BloomFlags::All;
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 | use bitcoin::opcodes::All;
   |     ~~~~~~~~~~~~~~~~~~~~~
13 | use bitcoin::sighash::EcdsaSighashType::All;
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 | use bitcoin::sighash::Prevouts::All;
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     and 1 other candidate

Check failure on line 5 in cw-orch-daemon/src/tx_broadcaster.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `secp256k1::All`

error[E0432]: unresolved import `secp256k1::All`
 --> cw-orch-daemon/src/tx_broadcaster.rs:5:5
  |
5 | use secp256k1::All;
  |     ^^^^^^^^^^^^^^ no `All` in the root
  |
help: consider importing one of these items instead
  |
5 | use bitcoin::network::message_bloom::BloomFlags::All;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 | use bitcoin::opcodes::All;
  |     ~~~~~~~~~~~~~~~~~~~~~
5 | use bitcoin::sighash::EcdsaSighashType::All;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 | use bitcoin::sighash::Prevouts::All;
  |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    and 1 other candidate

Check failure on line 36 in cw-orch-daemon/src/sender.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `secp256k1::All`

error[E0432]: unresolved import `secp256k1::All`
  --> cw-orch-daemon/src/sender.rs:36:17
   |
36 | use secp256k1::{All, Context, Secp256k1, Signing};
   |                 ^^^ no `All` in the root
   |
   = help: consider importing one of these items instead:
           bitcoin::network::message_bloom::BloomFlags::All
           bitcoin::opcodes::All
           bitcoin::sighash::EcdsaSighashType::All
           bitcoin::sighash::Prevouts::All
           bitcoin::sighash::TapSighashType::All