diff options
| author | Philip Kaufmann <[email protected]> | 2012-06-04 23:13:01 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-06-04 23:13:01 +0200 |
| commit | 4e16306ae3ca3d67fd356fe192b4111ead99130c (patch) | |
| tree | 91f0543e3f7da642fa1e114579487b5a78271c41 /src/qt/optionsmodel.cpp | |
| parent | Merge branch 'netopt' of https://github.com/sipa/bitcoin (diff) | |
| download | discoin-4e16306ae3ca3d67fd356fe192b4111ead99130c.tar.xz discoin-4e16306ae3ca3d67fd356fe192b4111ead99130c.zip | |
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; |