aboutsummaryrefslogtreecommitdiff
path: root/ui.cpp
diff options
context:
space:
mode:
authorSatoshi Nakamoto <[email protected]>2010-08-10 16:03:01 +0000
committerGavin Andresen <[email protected]>2010-08-10 16:03:01 +0000
commitc2fa70ddfd7711d514a701b3a7c8adb561acc3ff (patch)
tree3486a7471bf4c9d3efdf6f65efe2c59b4d89d94d /ui.cpp
parentenable SSE2 in all builds to fix crypto++ SHA-256 on 64-bit (diff)
downloaddiscoin-c2fa70ddfd7711d514a701b3a7c8adb561acc3ff.tar.xz
discoin-c2fa70ddfd7711d514a701b3a7c8adb561acc3ff.zip
always make 8 outbound connections even if have inbound,
limit one outbound connection per a.b.?.? range, switch -maxconnections=#
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.cpp b/ui.cpp
index e6f022bf6..f3e809a84 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -1015,7 +1015,7 @@ void CMainFrame::OnPaintListCtrl(wxPaintEvent& event)
// Update status bar
static bool fPrevLockdown;
if (IsLockdown())
- m_statusBar->SetStatusText(string(" ") + _("WARNING: Displayed transactions may not be correct! You may need to upgrade."), 0);
+ m_statusBar->SetStatusText(string(" ") + _("WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade."), 0);
else if (fPrevLockdown)
m_statusBar->SetStatusText("", 0);
fPrevLockdown = IsLockdown();