mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03: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
Reference in a new issue