aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-09-13 11:15:58 +0200
committerWladimir J. van der Laan <[email protected]>2016-09-13 11:16:03 +0200
commit39ac1ec6426447b924052c2da3f80e0220c308c3 (patch)
treefe12e2e9e3002792558ac478c1cf87381a454e19 /src/main.cpp
parentMerge #8662: Update btcdrak signing key (diff)
parentfix op order to append first alert (diff)
downloaddiscoin-39ac1ec6426447b924052c2da3f80e0220c308c3.tar.xz
discoin-39ac1ec6426447b924052c2da3f80e0220c308c3.zip
Merge #8697: fix op order to append first alert
1d635ae fix op order to append first alert (rodasmith)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index cb6e94227..593897f51 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4659,12 +4659,12 @@ std::string GetWarnings(const std::string& strFor)
if (fLargeWorkForkFound)
{
strStatusBar = strRPC = "Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.";
- strGUI += strGUI.empty() ? "" : uiAlertSeperator + _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.");
+ strGUI += (strGUI.empty() ? "" : uiAlertSeperator) + _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.");
}
else if (fLargeWorkInvalidChainFound)
{
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.";
- 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.");
+ 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.");
}
if (strFor == "gui")