40 alqo until block 86400 ( 20 % of block rewards )
Masternode cost = 10000 ALQO
Blocktime is 60 seconds, which means an average of 1440 blocks per day
Daily revenue, supposing 40 coins per block, should be 1440 * 40 / 206 = 279 ALQO
Days for ROI ~ 36 days
my calculus based on ALQO, not the price since alqo price fluctuation.
Basing it on alqo seems fair, but still, I can't confirm that 40, it seems to be 10. It even seems to be forced on here:
https://github.com/ALQOCRYPTO/ALQO/commit/86d10d839ad30815733414ed72c623ba3cdc4589Why so?
That git has nothing to do with rewards.
You can find the masternode rewards here:
https://github.com/ALQOCRYPTO/ALQO/blob/d596d71d6db16a1bf215034604f6cfca05c0c058/src/main.cpp#L1659Maybe know what you read before posting stuff ;-)
if(nHeight <= 86400 && nHeight > 0) {
ret = blockValue / 100 * 20;
} else if (nHeight > 86400 && nHeight <= 151200) {
ret = blockValue / 100 * 25;
} else if (nHeight > 151200 && nHeight <= 302400) {
ret = blockValue / 100 * 20;
} else if (nHeight > 302400 && nHeight <= 345600) {
ret = blockValue / 100 * 30;
} else if (nHeight > 345600 && nHeight <= 388800) {
ret = blockValue / 100 * 35;
} else if (nHeight > 388800) {
ret = blockValue / 100 * 40;
}
Until block 86400 the reward is 20%, making it 40 ALQO.
Everybody is receiving 40 ALQO, are you sure you have a running masternode?