From c6127c41c99d9775ecc177928a2ec9fdc94e13a0 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Sun, 5 Feb 2023 15:25:54 +0100 Subject: [PATCH] gui: wording nit on missing feerate when creating a spend. --- 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 d2e683d9..bb3fb7d4 100644 --- a/gui/src/app/view/spend/step.rs +++ b/gui/src/app/view/spend/step.rs @@ -170,7 +170,7 @@ pub fn choose_coins_view<'a>( .push(text("Amount left to select:")) .push(text(amount_left.to_string()).bold()) } else { - Row::new().push(text("Please, define feerate")) + Row::new().push(text("Feerate needs to be set.")) }) .width(Length::Fill), )