Update insufficient funds error

This commit is contained in:
Aditya Kulkarni 2019-10-01 10:08:31 -07:00
parent 7745b6f105
commit 91611874e9

View File

@ -1114,8 +1114,8 @@ impl LightWallet {
if selected_value < u64::from(target_value) {
eprintln!(
"Insufficient funds (have {}, need {:?})",
selected_value, target_value
"Insufficient verified funds (have {}, need {:?}).\n Note, funds need {} confirmations before they can be spent",
selected_value, target_value, ANCHOR_OFFSET
);
return None;
}