zcash_client_sqlite: Add database tables for Orchard #4960
ci.yml
on: pull_request
Bitrot check
2m 51s
Clippy (MSRV)
3m 14s
Clippy (beta)
12s
Code coverage
16m 21s
Intra-doc links
3m 53s
Rustfmt
14s
protobuf consistency
2m 59s
UUID validity
4s
Matrix: build-latest
Matrix: build-nodefault
Matrix: check-msrv
Matrix: test
Annotations
11 errors and 5 warnings
Clippy (beta)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
returning the result of a `let` binding from a block:
zcash_client_sqlite/src/wallet/scanning.rs#L364
error: returning the result of a `let` binding from a block
--> zcash_client_sqlite/src/wallet/scanning.rs:364:9
|
344 | / let extended_range = extend_range(
345 | | conn,
346 | | &range,
347 | | required_sapling_subtrees,
... |
350 | | wallet_birthday,
351 | | )?;
| |___________- unnecessary `let` binding
...
364 | extended_range
| ^^^^^^^^^^^^^^
|
= note: `-D clippy::let-and-return` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
help: return the expression directly
|
344 ~
345 |
...
356 |
357 ~ extend_range(
358 + conn,
359 + &range,
360 + required_sapling_subtrees,
361 + SAPLING_TABLES_PREFIX,
362 + params.activation_height(NetworkUpgrade::Sapling),
363 + wallet_birthday,
364 + )?
|
|
returning the result of a `let` binding from a block:
zcash_client_sqlite/src/wallet/scanning.rs#L364
error: returning the result of a `let` binding from a block
--> zcash_client_sqlite/src/wallet/scanning.rs:364:9
|
344 | / let extended_range = extend_range(
345 | | conn,
346 | | &range,
347 | | required_sapling_subtrees,
... |
350 | | wallet_birthday,
351 | | )?;
| |___________- unnecessary `let` binding
...
364 | extended_range
| ^^^^^^^^^^^^^^
|
= note: `-D clippy::let-and-return` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
help: return the expression directly
|
344 ~
345 |
...
356 |
357 ~ extend_range(
358 + conn,
359 + &range,
360 + required_sapling_subtrees,
361 + SAPLING_TABLES_PREFIX,
362 + params.activation_height(NetworkUpgrade::Sapling),
363 + wallet_birthday,
364 + )?
|
|
Clippy (MSRV)
Clippy had exited with the 101 exit code
|
Test Orchard on Linux
Process completed with exit code 101.
|
Test Orchard on Windows
Process completed with exit code 1.
|
Test Orchard on macOS
Process completed with exit code 101.
|
Code coverage
The run was canceled by @str4d.
|
Code coverage
The operation was canceled.
|
Test on macOS
The run was canceled by @str4d.
|
Test on macOS
The operation was canceled.
|
Clippy (beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
protobuf consistency
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: supplypike/setup-bin@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (MSRV)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (MSRV)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|