mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-07-30 20:01:26 +00:00
Update insufficient funds error
This commit is contained in:
@@ -1114,8 +1114,8 @@ impl LightWallet {
|
|||||||
|
|
||||||
if selected_value < u64::from(target_value) {
|
if selected_value < u64::from(target_value) {
|
||||||
eprintln!(
|
eprintln!(
|
||||||
"Insufficient funds (have {}, need {:?})",
|
"Insufficient verified funds (have {}, need {:?}).\n Note, funds need {} confirmations before they can be spent",
|
||||||
selected_value, target_value
|
selected_value, target_value, ANCHOR_OFFSET
|
||||||
);
|
);
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user