Skip to content

Commit c296b75

Browse files
committed
Merge bitcoin#580: Fixed Multisend dialog to show settings properly
8dca829 Update multisenddialog.cpp (SHTDJ) 40baa7d Fixed Multisend dialog to show settings properly (SHTDJ) Tree-SHA512: df6ea6b3ece4f1417758d97d70d84047abf5cfa854068c97b9e463087fd80afcc08188ff4e33b88cb6c38db75efc993b383b3db74beb4655e2cb10cf08d05505
2 parents f0d8942 + 8dca829 commit c296b75

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/qt/multisenddialog.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,11 @@ void MultiSendDialog::on_viewButton_clicked()
7474
std::pair<std::string, int> pMultiSend;
7575
std::string strMultiSendPrint = "";
7676
if (pwalletMain->isMultiSendEnabled()) {
77-
if (pwalletMain->fMultiSendStake)
78-
strMultiSendPrint += "MultiSend Active for Stakes\n";
77+
if (pwalletMain->fMultiSendStake && pwalletMain->fMultiSendMasternodeReward)
78+
strMultiSendPrint += "MultiSend Active for Stakes and Masternode Rewards\n";
7979
else if (pwalletMain->fMultiSendStake)
80+
strMultiSendPrint += "MultiSend Active for Stakes\n";
81+
else if (pwalletMain->fMultiSendMasternodeReward)
8082
strMultiSendPrint += "MultiSend Active for Masternode Rewards\n";
8183
} else
8284
strMultiSendPrint += "MultiSend Not Active\n";

0 commit comments

Comments
 (0)