From 2099866a60b5b9144bcb108ae17bfbb39d47fd90 Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:28:34 +0000 Subject: [PATCH 1/2] gui: remove step to back up descriptor --- gui/src/installer/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/gui/src/installer/mod.rs b/gui/src/installer/mod.rs index 77273709..0b5bac74 100644 --- a/gui/src/installer/mod.rs +++ b/gui/src/installer/mod.rs @@ -155,7 +155,6 @@ impl Installer { ParticipateXpub::new(self.signer.clone()).into(), ImportDescriptor::new(false).into(), BackupMnemonic::new(self.signer.clone()).into(), - BackupDescriptor::default().into(), RegisterDescriptor::new_import_wallet().into(), SelectBitcoindTypeStep::new().into(), InternalBitcoindStep::new(&self.context.data_dir).into(), From 52cbc3ee386973c12d002da3a688266994261312 Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:29:43 +0000 Subject: [PATCH 2/2] gui: require valid network to proceed --- gui/src/installer/view.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/installer/view.rs b/gui/src/installer/view.rs index b44e7b83..c00763f3 100644 --- a/gui/src/installer/view.rs +++ b/gui/src/installer/view.rs @@ -720,7 +720,7 @@ pub fn participate_xpub<'a>( shared, Message::UserActionDone, )) - .push(if shared { + .push(if shared && network_valid { button::primary(None, "Next") .width(Length::Fixed(200.0)) .on_press(Message::Next)