Skip to content

Commit

Permalink
Gui(installer): set Installer.context.remote_backend when bitcoind se…
Browse files Browse the repository at this point in the history
…lected
  • Loading branch information
pythcoiner committed Sep 5, 2024
1 parent 67f5be6 commit b1e2879
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gui/src/installer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,13 @@ impl Installer {
.expect("There is always a step")
.update(&mut self.hws, Message::Installed(Err(e)))
}
Message::SelectBitcoindType(message::SelectBitcoindTypeMsg::UseExternal(_)) => {
self.context.remote_backend = RemoteBackend::None;
self.steps
.get_mut(self.current)
.expect("There is always a step")
.update(&mut self.hws, message)
}
_ => self
.steps
.get_mut(self.current)
Expand Down

0 comments on commit b1e2879

Please sign in to comment.