# HG changeset patch # User Pieter Wuille # Date 1338920005 25200 # Node ID f51444eafc8f7b4c9eb82103efbbbe3a1a94781f # Parent 7a471193296452e20601ef885e6b3b41041a630d# Parent f746a074e46c2f0e5fa7420fd291c665bc9a4cf4 Merge pull request #1418 from Diapolo/GUI_fix_default_proxy_addr fix default Proxy address in Qt options (no hostname allowed currently) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp --- 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;