Draft: Add PIR spendability support to zcash_client_sqlite #13
Annotations
11 warnings
|
Complete job
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: auguwu/clippy-action@94a9ff2f6920180b89e5c03d121d0af04a9d3e03. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Run Clippy (beta):
pczt/src/lib.rs#L231
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/transparent.rs:231:54
|
231 | for (lhs, rhs) in self.inputs.iter_mut().zip(inputs.into_iter()) {
| ^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
231 - for (lhs, rhs) in self.inputs.iter_mut().zip(inputs.into_iter()) {
231 + for (lhs, rhs) in self.inputs.iter_mut().zip(inputs) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L401
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/sapling.rs:401:55
|
401 | for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
| ^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
401 - for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
401 + for (lhs, rhs) in self.outputs.iter_mut().zip(outputs) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L358
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/sapling.rs:358:54
|
358 | for (lhs, rhs) in self.spends.iter_mut().zip(spends.into_iter()) {
| ^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
358 - for (lhs, rhs) in self.spends.iter_mut().zip(spends.into_iter()) {
358 + for (lhs, rhs) in self.spends.iter_mut().zip(spends) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L330
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/orchard.rs:330:55
|
330 | for (lhs, rhs) in self.actions.iter_mut().zip(actions.into_iter()) {
| ^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
= note: `-W clippy::useless-conversion` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::useless_conversion)]`
help: consider removing the `.into_iter()`
|
330 - for (lhs, rhs) in self.actions.iter_mut().zip(actions.into_iter()) {
330 + for (lhs, rhs) in self.actions.iter_mut().zip(actions) {
|
|
|
Run Clippy (beta):
zcash_client_backend/src/lib.rs#L169
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> zcash_client_backend/src/fees.rs:169:20
|
169 | .chain(Some(fee_required).into_iter())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:510:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
= note: `-W clippy::useless-conversion` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::useless_conversion)]`
help: consider removing the `.into_iter()`
|
169 - .chain(Some(fee_required).into_iter())
169 + .chain(Some(fee_required))
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L282
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/transparent.rs:282:55
|
282 | for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
| ^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
282 - for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
282 + for (lhs, rhs) in self.outputs.iter_mut().zip(outputs) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L231
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/transparent.rs:231:54
|
231 | for (lhs, rhs) in self.inputs.iter_mut().zip(inputs.into_iter()) {
| ^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
231 - for (lhs, rhs) in self.inputs.iter_mut().zip(inputs.into_iter()) {
231 + for (lhs, rhs) in self.inputs.iter_mut().zip(inputs) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L401
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/sapling.rs:401:55
|
401 | for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
| ^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
401 - for (lhs, rhs) in self.outputs.iter_mut().zip(outputs.into_iter()) {
401 + for (lhs, rhs) in self.outputs.iter_mut().zip(outputs) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L358
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/sapling.rs:358:54
|
358 | for (lhs, rhs) in self.spends.iter_mut().zip(spends.into_iter()) {
| ^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
help: consider removing the `.into_iter()`
|
358 - for (lhs, rhs) in self.spends.iter_mut().zip(spends.into_iter()) {
358 + for (lhs, rhs) in self.spends.iter_mut().zip(spends) {
|
|
|
Run Clippy (beta):
pczt/src/lib.rs#L330
warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> pczt/src/orchard.rs:330:55
|
330 | for (lhs, rhs) in self.actions.iter_mut().zip(actions.into_iter()) {
| ^^^^^^^^^^^^^^^^^^^
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/2c8c85df041cdcea3778a5495e4059869006bdcb/library/core/src/iter/traits/iterator.rs:629:11
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#useless_conversion
= note: `-W clippy::useless-conversion` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::useless_conversion)]`
help: consider removing the `.into_iter()`
|
330 - for (lhs, rhs) in self.actions.iter_mut().zip(actions.into_iter()) {
330 + for (lhs, rhs) in self.actions.iter_mut().zip(actions) {
|
|
background
wait
wait-all
cancel
Loading