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