Merge pull request #1041 from crowning-/patch-1

[UI] Message change when Masternodes is started
This commit is contained in:
Evan Duffield 2016-09-30 09:18:05 -07:00 committed by GitHub
commit 0e9a57d6ad

View File

@ -142,7 +142,7 @@ std::string CActiveMasternode::GetStatus()
case ACTIVE_MASTERNODE_SYNC_IN_PROCESS: return "Sync in progress. Must wait until sync is complete to start Masternode"; case ACTIVE_MASTERNODE_SYNC_IN_PROCESS: return "Sync in progress. Must wait until sync is complete to start Masternode";
case ACTIVE_MASTERNODE_INPUT_TOO_NEW: return strprintf("Masternode input must have at least %d confirmations", Params().GetConsensus().nMasternodeMinimumConfirmations); case ACTIVE_MASTERNODE_INPUT_TOO_NEW: return strprintf("Masternode input must have at least %d confirmations", Params().GetConsensus().nMasternodeMinimumConfirmations);
case ACTIVE_MASTERNODE_NOT_CAPABLE: return "Not capable masternode: " + strNotCapableReason; case ACTIVE_MASTERNODE_NOT_CAPABLE: return "Not capable masternode: " + strNotCapableReason;
case ACTIVE_MASTERNODE_STARTED: return "Masternode successfully started"; case ACTIVE_MASTERNODE_STARTED: return "Masternode start request sent";
default: return "unknown"; default: return "unknown";
} }
} }