aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-06-05 11:13:25 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2012-06-05 11:13:25 -0700
commitafdd59416ed614c63591946aa95c9334db41fc8c (patch)
treecdf332a7889b8f40838ffeab137bd262ef3fafe9
parent45268208aec6630331238009a5758a2ff228b383 (diff)
parent4e16306ae3ca3d67fd356fe192b4111ead99130c (diff)
downloadbitcoin-afdd59416ed614c63591946aa95c9334db41fc8c.tar.xz
Merge pull request #1418 from Diapolo/GUI_fix_default_proxy_addr
fix default Proxy address in Qt options (no hostname allowed currently)
-rw-r--r--src/qt/optionsmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp
index e65694bb52..64d91cb0b1 100644
--- a/src/qt/optionsmodel.cpp
+++ b/src/qt/optionsmodel.cpp
@@ -148,7 +148,7 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const
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;