From 263f00150d37908d97bb491cd0dbc2180f36b654 Mon Sep 17 00:00:00 2001 From: edouard Date: Sat, 4 Feb 2023 11:11:51 +0100 Subject: [PATCH] fix: spend minimal amount in btc --- gui/src/app/view/spend/step.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/app/view/spend/step.rs b/gui/src/app/view/spend/step.rs index 439a8aa0..d2e683d9 100644 --- a/gui/src/app/view/spend/step.rs +++ b/gui/src/app/view/spend/step.rs @@ -100,7 +100,7 @@ pub fn recipient_view<'a>( form::Form::new("Amount", amount, move |msg| { CreateSpendMessage::RecipientEdited(index, "amount", msg) }) - .warning("Please enter correct amount (> 5000 sats)") + .warning("Please enter correct amount (> 0.00005000 btc)") .size(20) .padding(10), )