From 42940f638598b02acf1cc4f175703725a2ef3cf2 Mon Sep 17 00:00:00 2001 From: edouard Date: Sat, 4 Feb 2023 18:24:15 +0100 Subject: [PATCH] fix: drop connections to hws in share xpub panel Use needs to be able to start new connections in the register descriptor step. --- gui/src/installer/step/descriptor.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/src/installer/step/descriptor.rs b/gui/src/installer/step/descriptor.rs index 0700876d..d9bdd17e 100644 --- a/gui/src/installer/step/descriptor.rs +++ b/gui/src/installer/step/descriptor.rs @@ -910,6 +910,8 @@ impl Step for ParticipateXpub { fn apply(&mut self, ctx: &mut Context) -> bool { ctx.bitcoin_config.network = self.network; + // Drop connections to hardware wallets. + self.xpubs_hw = Vec::new(); true }