Everyone should know that masternodes are currently active and skimming 20%.
I thought the previous estimate of block 27500 was incorrect.
well it's in the code that they don't start until about block 27,500, and basically every yiimp pool has an explorer so.......
According to the code, it started at block 960 when the ramp up ended.
https://github.com/bulwark-crypto/Bulwark/blob/master/src/main.cpp#L1685-#L1700int64_t GetMasternodePayment(int nHeight, int64_t blockValue, int nMasternodeCount)
{
int64_t ret = 0;
if (nHeight < Params().RAMP_TO_BLOCK()) {
ret = 0;
} else if (nHeight <= 28800 && nHeight >= Params().RAMP_TO_BLOCK()) {
ret = blockValue / 5;
} else if (nHeight <= 57600 && nHeight > 28800) {
ret = blockValue / 4;
} else if (nHeight <= 86400 && nHeight > 57600) {
ret = blockValue / 3;
} else if (nHeight <= Params().LAST_POW_BLOCK() && nHeight > 86400) {
ret = blockValue / 2;
} else if (nHeight > Params().LAST_POW_BLOCK()) {
int64_t nMoneySupply = chainActive.Tip()->nMoneySupply;