Skip to content

Commit

Permalink
Merge pull request #44 from volbil/rabbit
Browse files Browse the repository at this point in the history
Minor bug fixes and improvements
  • Loading branch information
volbil authored May 21, 2021
2 parents 541d0c9 + 11de0c2 commit 733222b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 4)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 4)
define(_CLIENT_VERSION_REVISION, 5)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
1 change: 1 addition & 0 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ static Checkpoints::MapCheckpoints mapCheckpoints =
(892401, uint256S("5db934f9f5e740f7897859123a11661582464e42daa214f456c43b1471240642"))
(893378, uint256S("d9997bcab3ea6657a9c3077f58ded04e3ed44c0c1394d6f59c5447be9708f0c4"))
(894439, uint256S("c15b15eddb2c9b97e4cc34de18d54c64dffff20c3a83688a2112c7c6492997b1"))
(1300000, uint256S("3fbe4040a7deb7d812d23675aa8d1289d64c22c859c3e9ff56a7fe6027a336d5"))
;

static const Checkpoints::CCheckpointData data = {
Expand Down
4 changes: 2 additions & 2 deletions src/qt/rapids/masternodeswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,8 @@ void MasterNodesWidget::onCreateMNClicked()
return;
}

if (walletModel->getBalance() <= (COIN * 10000000)) {
inform(tr("Not enough balance to create a masternode, %1 %1 required.").arg(10000000).arg(CURRENCY_UNIT.c_str()));
if (walletModel->getBalance() <= (COIN * 10000)) {
inform(tr("Not enough balance to create a masternode, 10,000 RPD is required."));
return;
}
showHideOp(true);
Expand Down
4 changes: 2 additions & 2 deletions src/qt/rapids/settings/forms/settingsfaqwidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
<string>https://www.rapids.org/</string>
<string>https://rapidsnetwork.io/</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -820,7 +820,7 @@
&lt;a style='color: #b07d00' href='https://discord.gg/ndQVgtv'&gt;
#support in our Discord&lt;/a&gt;.
You can also write us at
&lt;a style='color: #b07d00' href='http://www.rapids.org/discussion'&gt;
&lt;a style='color: #b07d00' href='http://rapidsnetwork.io/discussion'&gt;
our support site&lt;/a&gt;.
&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;
</string>
Expand Down

0 comments on commit 733222b

Please sign in to comment.