Skip to content

Commit

Permalink
Merge #670: Backport PR #669
Browse files Browse the repository at this point in the history
7bbb412 gui: ensure we can retry starting in case of error (jp1ac4)

Pull request description:

ACKs for top commit:
  darosior:
    self-ACK 7bbb412 -- clean backport of #669 ACK'd by Edouard

Tree-SHA512: 151dcb8e5d386312147cde9e562c5aab5add2cfc6a78661f91fa35eab0fb570a03cf03c82e8642f880f6d6ab45810bfca0087789a63601e0cbeb666597f3e020
  • Loading branch information
edouardparis committed Aug 31, 2023
2 parents beaf2f1 + 7bbb412 commit 277ec9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/installer/step/bitcoind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -652,9 +652,9 @@ impl Step for InternalBitcoindStep {
message::InternalBitcoindMsg::Previous => {
if let Some(bitcoind) = &self.internal_bitcoind {
bitcoind.stop();
self.started = None;
}
self.internal_bitcoind = None;
self.started = None; // clear both Ok and Err
return Command::perform(async {}, |_| Message::Previous);
}
message::InternalBitcoindMsg::Reload => {
Expand Down

0 comments on commit 277ec9c

Please sign in to comment.