Remove erroneous ":" in front of port in options dialog (introduced with network refactor)
This commit is contained in:
parent
be4d08b261
commit
06706ab8ef
@ -40,7 +40,7 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const
|
|||||||
case ProxyIP:
|
case ProxyIP:
|
||||||
return QVariant(QString::fromStdString(addrProxy.ToStringIP()));
|
return QVariant(QString::fromStdString(addrProxy.ToStringIP()));
|
||||||
case ProxyPort:
|
case ProxyPort:
|
||||||
return QVariant(QString::fromStdString(addrProxy.ToStringPort()));
|
return QVariant(addrProxy.GetPort());
|
||||||
case Fee:
|
case Fee:
|
||||||
return QVariant(nTransactionFee);
|
return QVariant(nTransactionFee);
|
||||||
case DisplayUnit:
|
case DisplayUnit:
|
||||||
|
Loading…
Reference in New Issue
Block a user