diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-06-05 11:13:25 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-06-05 11:13:25 -0700 |
commit | afdd59416ed614c63591946aa95c9334db41fc8c (patch) | |
tree | cdf332a7889b8f40838ffeab137bd262ef3fafe9 | |
parent | 45268208aec6630331238009a5758a2ff228b383 (diff) | |
parent | 4e16306ae3ca3d67fd356fe192b4111ead99130c (diff) |
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.cpp | 2 |
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; |