Skip to content

Commit

Permalink
Update naming for some blast resources, fix Makefile whitespace, MN c…
Browse files Browse the repository at this point in the history
…ount display in QT
  • Loading branch information
cryptoBLAST committed Jul 18, 2019
1 parent 43f649a commit b19ad4a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contrib/blast-qt.pro
Expand Up @@ -18,4 +18,4 @@ FORMS += \
../src/qt/forms/transactiondescdialog.ui \

RESOURCES += \
../src/qt/blast.qrc
../src/qt/bitcoin.qrc
2 changes: 1 addition & 1 deletion contrib/debian/README.md
Expand Up @@ -15,7 +15,7 @@ To install:

If you build yourself, you will either need to modify the paths in
the .desktop file or copy or symlink your blast-qt binary to `/usr/bin`
and the `../../share/pixmaps/bitcoin128.png` to `/usr/share/pixmaps`
and the `../../share/pixmaps/blast128.png` to `/usr/share/pixmaps`

blast-qt.protocol (KDE)

2 changes: 1 addition & 1 deletion src/Makefile.am
Expand Up @@ -166,7 +166,7 @@ BITCOIN_CORE_H = \
script/sign.h \
script/standard.h \
script/ismine.h \
spork.h \
spork.h \
streams.h \
support/allocators/secure.h \
support/allocators/zeroafterfree.h \
Expand Down
5 changes: 3 additions & 2 deletions src/qt/clientmodel.cpp
Expand Up @@ -81,10 +81,11 @@ int ClientModel::getNumConnections(unsigned int flags) const
QString ClientModel::getMasternodeCountString() const
{
// return tr("Total: %1 (PS compatible: %2 / Enabled: %3) (IPv4: %4, IPv6: %5, TOR: %6)").arg(QString::number((int)mnodeman.size()))
return tr("Total: %1 (PS compatible: %2 / Enabled: %3)")
// return tr("Total: %1 (PS compatible: %2 / Enabled: %3)")
return tr("Total: %1")
.arg(QString::number((int)mnodeman.size()))
//.arg(QString::number((int)mnodeman.CountEnabled(MIN_PRIVATESEND_PEER_PROTO_VERSION)))
.arg(QString::number((int)mnodeman.CountEnabled()));
// .arg(QString::number((int)mnodeman.CountEnabled()));
// .arg(QString::number((int)mnodeman.CountByIP(NET_IPV4)))
// .arg(QString::number((int)mnodeman.CountByIP(NET_IPV6)))
// .arg(QString::number((int)mnodeman.CountByIP(NET_TOR)));
Expand Down

0 comments on commit b19ad4a

Please sign in to comment.