Skip to content

Commit 706f986

Browse files
committed
disambiguate error strings
1 parent 8a73d3c commit 706f986

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zingolib/src/lightclient/send.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pub enum DoSendProposedError {
172172
SaplingParams(String),
173173
#[error("Could not find UnifiedSpendKey: {0}")]
174174
UnifiedSpendKey(std::io::Error),
175-
#[error("No proposal. Call do_propose first.")]
175+
#[error("Can't Calculate! No proposal. Call do_propose first?")]
176176
Calculation(
177177
zcash_client_backend::data_api::error::Error<
178178
crate::wallet::tx_map_and_maybe_trees::TxMapAndMaybeTreesTraitError,
@@ -191,6 +191,6 @@ pub enum DoSendProposedError {
191191
pub enum DoQuickSendProposedError {
192192
#[error("propose {0}")]
193193
Propose(crate::lightclient::propose::DoProposeError),
194-
#[error("No proposal. Call do_propose first.")]
194+
#[error("Can't QuickSend! No proposal. Call do_propose first.")]
195195
Send(DoSendProposedError),
196196
}

0 commit comments

Comments
 (0)