Skip to content

Commit

Permalink
Temporarily disable the DAO needs resync popup
Browse files Browse the repository at this point in the history
This is only changed for this release to prevent false positives caused by #5974.
  • Loading branch information
ripcurlx committed Jan 24, 2022
1 parent c4fa58d commit 013dc98
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package bisq.desktop.main.presentation;

import bisq.desktop.Navigation;
import bisq.desktop.util.GUIUtil;

import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.btc.wallet.BtcWalletService;
Expand Down Expand Up @@ -99,7 +98,9 @@ private void onUpdateAnyChainHeight() {
bsqInfo.set("");
if (daoFacade.isInConflictWithSeedNode() && !daoConflictWarningShown) {
daoConflictWarningShown = true; // only warn max 1 time per session so as not to annoy
GUIUtil.showDaoNeedsResyncPopup(navigation);
// TODO: only temporarily removed for v1.8.2 to prevent showing false positives and will be
// re-enabled with the next release
// GUIUtil.showDaoNeedsResyncPopup(navigation);
}
} else {
bsqInfo.set(Res.get("mainView.footer.bsqInfo.synchronizing"));
Expand Down

0 comments on commit 013dc98

Please sign in to comment.