mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-12 08:08:25 +00:00
fix default Proxy address in Qt options (no hostname allowed currently)
This commit is contained in:
parent
46e06b875d
commit
4e16306ae3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user