diff --git a/gui/src/app/view/settings.rs b/gui/src/app/view/settings.rs index fc22c022..893d4077 100644 --- a/gui/src/app/view/settings.rs +++ b/gui/src/app/view/settings.rs @@ -51,7 +51,7 @@ pub fn list(cache: &Cache, is_remote_backend: bool) -> Element { Button::new( Row::new() .push(badge::Badge::new(icon::bitcoin_icon())) - .push(text("Bitcoin Core").bold()) + .push(text("Node").bold()) .padding(10) .spacing(20) .align_items(Alignment::Center) @@ -161,7 +161,7 @@ pub fn bitcoind_settings<'a>( ) .push(icon::chevron_right().size(30)) .push( - Button::new(text("Bitcoin Core").size(30).bold()) + Button::new(text("Node").size(30).bold()) .style(theme::Button::Transparent) .on_press(Message::Settings(SettingsMessage::EditBitcoindSettings)), ), diff --git a/gui/src/installer/view.rs b/gui/src/installer/view.rs index 70e22a36..142c9d48 100644 --- a/gui/src/installer/view.rs +++ b/gui/src/installer/view.rs @@ -527,11 +527,12 @@ pub fn import_descriptor<'a>( "Import the wallet", Column::new() .push(Column::new().spacing(20).push(col_descriptor).push(text( - "After creating the wallet, \ - you will need to perform a rescan of \ - the blockchain in order to see your \ - coins and past transactions. This can \ - be done in Settings > Bitcoin Core.", + "If you are using a Bitcoin Core node, \ + you will need to perform a rescan of \ + the blockchain after creating the wallet \ + in order to see your coins and past \ + transactions. This can be done in \ + Settings > Node.", ))) .push( if imported_descriptor.value.is_empty() || !imported_descriptor.valid {