zcash_client_backend: Add propose_standard_transfer. #2154
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
ci.yml
on: push
Bitrot check
7m 51s
Clippy (MSRV)
8m 7s
Clippy (beta)
31s
Code coverage
41m 20s
Intra-doc links
7m 37s
Rustfmt
28s
UUID validity
6s
Matrix: build-latest
Matrix: build-nodefault
Matrix: test
Annotations
3 errors and 2 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/testing.rs#L564
error: returning the result of a `let` binding from a block
--> zcash_client_sqlite/src/testing.rs:564:9
|
552 | / let result = propose_standard_transfer_to_address::<_, _, CommitmentTreeErrT>(
553 | | &mut self.db_data,
554 | | ¶ms,
555 | | fee_rule,
... |
561 | | change_memo,
562 | | );
| |__________- unnecessary `let` binding
563 |
564 | result
| ^^^^^^
|
= 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
|
552 ~
553 |
554 ~ propose_standard_transfer_to_address::<_, _, CommitmentTreeErrT>(
555 + &mut self.db_data,
556 + ¶ms,
557 + fee_rule,
558 + spend_from_account,
559 + min_confirmations,
560 + to,
561 + amount,
562 + memo,
563 + change_memo,
564 + )
|
|
Clippy (MSRV)
Clippy had exited with the 101 exit code
|
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/
|
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/
|