mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
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…
Add table
Add a link
Reference in a new issue