From 4e16306ae3ca3d67fd356fe192b4111ead99130c Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 4 Jun 2012 23:13:01 +0200 Subject: [PATCH] fix default Proxy address in Qt options (no hostname allowed currently) --- src/qt/optionsmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index e65694bb5..64d91cb0b 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;