diff options
| author | Pieter Wuille <[email protected]> | 2012-06-05 11:13:25 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-06-05 11:13:25 -0700 |
| commit | afdd59416ed614c63591946aa95c9334db41fc8c (patch) | |
| tree | cdf332a7889b8f40838ffeab137bd262ef3fafe9 /src/qt/optionsmodel.cpp | |
| parent | Merge pull request #1422 from Diapolo/add_used_datadir_debug_log (diff) | |
| parent | fix default Proxy address in Qt options (no hostname allowed currently) (diff) | |
| download | discoin-afdd59416ed614c63591946aa95c9334db41fc8c.tar.xz discoin-afdd59416ed614c63591946aa95c9334db41fc8c.zip | |
Merge pull request #1418 from Diapolo/GUI_fix_default_proxy_addr
fix default Proxy address in Qt options (no hostname allowed currently)
Diffstat (limited to 'src/qt/optionsmodel.cpp')
| -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 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; |