Skip to content

Commit 6dac5a4

Browse files
authored
Merge pull request #298 from carsenk/thefixes
Updated NVS UI for QT and Small Bugfix
2 parents d5ffe9f + f784f4b commit 6dac5a4

File tree

8 files changed

+285
-209
lines changed

8 files changed

+285
-209
lines changed

denarius-qt.pro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,10 @@ isEmpty(BOOST_INCLUDE_PATH) {
762762
macx:BOOST_INCLUDE_PATH = /opt/local/include
763763
}
764764

765+
macx:OPENSSL_LIB_PATH = /opt/local/lib/openssl-1.0
766+
macx:OPENSSL_INCLUDE_PATH = /opt/local/include/openssl-1.0
767+
768+
765769
windows:DEFINES += WIN32
766770
windows:RC_FILE = src/qt/res/bitcoin-qt.rc
767771

src/namecoin.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ CHooks* InitHook()
604604
// version for connectInputs. Used when accepting blocks.
605605
bool IsNameFeeEnough(CTxDB& txdb, const CTransaction& tx, const NameTxInfo& nti, const CBlockIndex* pindexBlock, const map<uint256, CTxIndex>& mapTestPool, bool fBlock, bool fMiner)
606606
{
607-
// get tx fee
608-
// Note: if fBlock and fMiner equal false then FetchInputs will search mempool
607+
// get tx fee
608+
// Note: if fBlock and fMiner equal false then FetchInputs will search mempool
609609
int64_t txFee;
610610
MapPrevTx mapInputs;
611611
bool fInvalid = false;
@@ -2712,4 +2712,4 @@ bool CNameDB::DumpToTextFile()
27122712

27132713
// myfile.close();
27142714
// return true;
2715-
}
2715+
}

src/qt/bitcoin.qrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<file alias="tx_inout">res/icons/tx_inout.png</file>
5252
<file alias="lock_closed">res/icons/lock_closed.png</file>
5353
<file alias="lock_open">res/icons/lock_open.png</file>
54-
<file alias="lock_staking">res/icons/lock_staking.png</file>
54+
<file alias="lock_staking">res/icons/lock_staking.png</file>
5555
<file alias="key">res/icons/key.png</file>
5656
<file alias="filesave">res/icons/filesave.png</file>
5757
<file alias="qrcode">res/icons/qrcode.png</file>
@@ -66,6 +66,7 @@
6666
<file alias="data">res/icons/data.png</file>
6767
<file alias="jupiter">res/icons/jupiter.png</file>
6868
<file alias="trade">res/icons/trade.png</file>
69+
<file alias="goldname">res/icons/goldnames.png</file>
6970
</qresource>
7071
<qresource prefix="/images">
7172
<file alias="about">res/images/about.png</file>

src/qt/bitcoingui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ void BitcoinGUI::createActions()
356356
marketAction->setCheckable(true);
357357
tabGroup->addAction(marketAction);
358358

359-
manageNamesAction = new QAction(QIcon(":/icons/names"), tr("&Manage NVS"), this);
359+
manageNamesAction = new QAction(QIcon(":/icons/names"), tr("&NVS"), this);
360360
manageNamesAction->setToolTip(tr("Manage Denarius NVS"));
361361
manageNamesAction->setCheckable(true);
362362
manageNamesAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_0));

0 commit comments

Comments
 (0)