Merge pull request #153 from idky137/add_indexer_service #313
ci.yml
on: push
Bitrot check
8m 30s
Clippy (MSRV)
7m 9s
Clippy (beta)
15s
Code coverage
4m 24s
Intra-doc links
8m 32s
Rustfmt
16s
Matrix: build-latest
Matrix: test
Annotations
16 errors and 8 warnings
Clippy (beta)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
Rustfmt
Process completed with exit code 1.
|
Code coverage
Process completed with exit code 1.
|
unneeded `return` statement:
zaino-state/src/mempool.rs#L407
error: unneeded `return` statement
--> zaino-state/src/mempool.rs:407:23
|
407 | status => return Err(MempoolError::StatusError(StatusError(status))),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `-D clippy::needless-return` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return)]`
help: remove `return`
|
407 | status => Err(MempoolError::StatusError(StatusError(status))),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
using `clone` on type `Hash` which implements the `Copy` trait:
zaino-state/src/mempool.rs#L123
error: using `clone` on type `Hash` which implements the `Copy` trait
--> zaino-state/src/mempool.rs:123:44
|
123 | check_block_hash = chain_info.best_block_hash.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `chain_info.best_block_hash`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
|
using `clone` on type `Hash` which implements the `Copy` trait:
zaino-state/src/mempool.rs#L108
error: using `clone` on type `Hash` which implements the `Copy` trait
--> zaino-state/src/mempool.rs:108:43
|
108 | best_block_hash = chain_info.best_block_hash.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `chain_info.best_block_hash`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::clone_on_copy)]`
|
useless conversion to the same type: `error::FetchServiceError`:
zaino-state/src/fetch.rs#L1806
error: useless conversion to the same type: `error::FetchServiceError`
--> zaino-state/src/fetch.rs:1806:27
|
1806 | Err(e) => Err(e.into()),
| ^^^^^^^^ help: consider removing `.into()`: `e`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
|
useless conversion to the same type: `error::FetchServiceError`:
zaino-state/src/fetch.rs#L1801
error: useless conversion to the same type: `error::FetchServiceError`
--> zaino-state/src/fetch.rs:1801:31
|
1801 | Err(e) => Err(e.into()),
| ^^^^^^^^ help: consider removing `.into()`: `e`
|
= 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`
= help: to override `-D warnings` add `#[allow(clippy::useless_conversion)]`
|
using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`:
zaino-state/src/fetch.rs#L1446
error: using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`
--> zaino-state/src/fetch.rs:1446:17
|
1446 | limit.and_then(|limit| Some(NoteCommitmentSubtreeIndex(limit))),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `limit.map(|limit| NoteCommitmentSubtreeIndex(limit))`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
|
using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`:
zaino-state/src/fetch.rs#L390
error: using `Option.and_then(|x| Some(y))`, which is more succinctly expressed as `map(|x| y)`
--> zaino-state/src/fetch.rs:390:17
|
390 | limit.and_then(|limit_index| Some(limit_index.0)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `limit.map(|limit_index| limit_index.0)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map
= note: `-D clippy::bind-instead-of-map` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::bind_instead_of_map)]`
|
Clippy (MSRV)
Clippy had exited with the 101 exit code
|
Test on ubuntu-latest
Process completed with exit code 101.
|
Test on macOS-latest
The job was canceled because "ubuntu-latest" failed.
|
Test on windows-latest
The job was canceled because "ubuntu-latest" failed.
|
Test on windows-latest
The operation was canceled.
|
Latest build on macOS-latest
This request was automatically failed because there were no enabled runners online to process the request for more than 1 days.
|
Clippy (beta)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Rustfmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Code coverage
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Clippy (MSRV)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Bitrot check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Intra-doc links
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Latest build on ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Test on ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|