changeset 2737:f51444eafc8f draft

Merge pull request #1418 from Diapolo/GUI_fix_default_proxy_addr fix default Proxy address in Qt options (no hostname allowed currently)
author Pieter Wuille <pieter.wuille@gmail.com>
date Tue, 05 Jun 2012 11:13:25 -0700
parents 7a4711932964 (current diff) f746a074e46c (diff)
children 5f7a933b4c45 59f3a0fdcd07
files
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/qt/optionsmodel.cpp
+++ b/src/qt/optionsmodel.cpp
@@ -148,7 +148,7 @@
             if (GetProxy(NET_IPV4, addrProxy))
                 return QVariant(QString::fromStdString(addrProxy.ToStringIP()));
             else
-                return QVariant(QString::fromStdString("localhost"));
+                return QVariant(QString::fromStdString("127.0.0.1"));
         }
         case ProxyPort: {
             CService addrProxy;