From 91611874e91b6b5c4faab01e8b87b658f6638258 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Tue, 1 Oct 2019 10:08:31 -0700 Subject: [PATCH] Update insufficient funds error --- src/lightwallet/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lightwallet/mod.rs b/src/lightwallet/mod.rs index 2f5c5d7..0002408 100644 --- a/src/lightwallet/mod.rs +++ b/src/lightwallet/mod.rs @@ -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; }