Skip to content

Add Wallet.sign_deterministic, deterministic nonces

Sign in for the full log view
GitHub Actions / clippy failed Nov 21, 2024 in 1s

clippy

2 errors

Details

Results

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

Versions

  • rustc 1.76.0 (07dca489a 2024-02-04)
  • cargo 1.76.0 (c84b36747 2024-01-18)
  • clippy 0.1.76 (07dca48 2024-02-04)

Annotations

Check failure on line 161 in ergo-lib/src/wallet.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find function `generate_commitments_for` in module `self::deterministic`

error[E0425]: cannot find function `generate_commitments_for` in module `self::deterministic`
   --> ergo-lib/src/wallet.rs:161:53
    |
161 |             if let Some(bag) = self::deterministic::generate_commitments_for(
    |                                                     ^^^^^^^^^^^^^^^^^^^^^^^^ not found in `self::deterministic`
    |
help: consider importing this function
    |
18  + use crate::wallet::multi_sig::generate_commitments_for;
    |
help: if you import `generate_commitments_for`, refer to it directly
    |
161 -             if let Some(bag) = self::deterministic::generate_commitments_for(
161 +             if let Some(bag) = generate_commitments_for(
    |

Check failure on line 5 in ergo-lib/src/wallet.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

file not found for module `deterministic`

error[E0583]: file not found for module `deterministic`
 --> ergo-lib/src/wallet.rs:5:1
  |
5 | mod deterministic;
  | ^^^^^^^^^^^^^^^^^^
  |
  = help: to create the module `deterministic`, create file "ergo-lib/src/wallet/deterministic.rs" or "ergo-lib/src/wallet/deterministic/mod.rs"
  = note: if there is a `mod deterministic` elsewhere in the crate already, import it with `use crate::...` instead