Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a scanning results reader #8104

Merged
merged 10 commits into from
Dec 14, 2023

Add a tutorial for the scanning results reader

c7d4ca6
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Add a scanning results reader #8104

Add a tutorial for the scanning results reader
c7d4ca6
Select commit
Loading
Failed to load commit list.
GitHub Actions / Clippy (stable) Results failed Dec 13, 2023 in 0s

Clippy (stable) Results

1 error

Details

Results

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

Versions

  • rustc 1.74.1 (a28077b28 2023-12-04)
  • cargo 1.74.1 (ecb9851af 2023-10-18)
  • clippy 0.1.74 (a28077b 2023-12-04)

Annotations

Check failure on line 43 in zebra-utils/src/bin/scanning-results-reader/main.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (stable) Results

this function takes 2 arguments but 3 arguments were supplied

error[E0061]: this function takes 2 arguments but 3 arguments were supplied
  --> zebra-utils/src/bin/scanning-results-reader/main.rs:43:19
   |
43 |     let storage = Storage::new(&Config::default(), zebra_network(&network), true);
   |                   ^^^^^^^^^^^^                                            ------
   |                                                                           | |
   |                                                                           | unexpected argument of type `bool`
   |                                                                           help: remove the extra argument
   |
note: associated function defined here
  --> /home/runner/work/zebra/zebra/zebra-scan/src/storage.rs:62:12
   |
62 |     pub fn new(config: &Config, network: Network) -> Self {
   |            ^^^