Skip to content

Commit 39ac1ec

Browse files
committed
Merge #8697: fix op order to append first alert
1d635ae fix op order to append first alert (rodasmith)
2 parents 2562152 + 1d635ae commit 39ac1ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4659,12 +4659,12 @@ std::string GetWarnings(const std::string& strFor)
46594659
if (fLargeWorkForkFound)
46604660
{
46614661
strStatusBar = strRPC = "Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.";
4662-
strGUI += strGUI.empty() ? "" : uiAlertSeperator + _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.");
4662+
strGUI += (strGUI.empty() ? "" : uiAlertSeperator) + _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.");
46634663
}
46644664
else if (fLargeWorkInvalidChainFound)
46654665
{
46664666
strStatusBar = strRPC = "Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.";
4667-
strGUI += strGUI.empty() ? "" : uiAlertSeperator + _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.");
4667+
strGUI += (strGUI.empty() ? "" : uiAlertSeperator) + _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.");
46684668
}
46694669

46704670
if (strFor == "gui")

0 commit comments

Comments
 (0)