Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zcash_client_backend/src/data_api/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ where
/// let tx_prover = match LocalTxProver::with_default_location() {
/// Some(tx_prover) => tx_prover,
/// None => {
/// panic!("Cannot locate the Zcash parameters. Please run zcash-fetch-params or fetch-params.sh to download the parameters, and then re-run the tests.");
/// panic!("Cannot locate the Zcash parameters. Please copy sapling-spend.params and sapling-output.params into the default location.");
/// }
/// };
///
Expand Down
2 changes: 1 addition & 1 deletion zcash_client_sqlite/src/wallet/sapling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ pub(crate) mod tests {
match LocalTxProver::with_default_location() {
Some(tx_prover) => tx_prover,
None => {
panic!("Cannot locate the Zcash parameters. Please run zcash-fetch-params or fetch-params.sh to download the parameters, and then re-run the tests.");
panic!("Cannot locate the Zcash parameters. Please copy sapling-spend.params and sapling-output.params into the default location and then re-run the tests.");
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion zcash_proofs/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl LocalTxProver {
///
/// match LocalTxProver::with_default_location() {
/// Some(tx_prover) => (),
/// None => println!("Please run zcash-fetch-params or fetch-params.sh to download the parameters."),
/// None => println!("Cannot locate the Zcash parameters. Please copy sapling-spend.params and sapling-output.params into the default location."),
/// }
/// ```
///
Expand Down