• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Schedule for masternode uptrend payments

splawik21

Yeah, it's me....
Staff member
Dash Core Group
Foundation Member
Dash Support Group
Just to have it under hand when needed :)
But the approx date is not valid.

if(nHeight > 158000) ret += blockValue / 20; //25.0% - 2014-10-23
if(nHeight > 158000+((576*30)*1)) ret += blockValue / 20; //30.0% - 2014-11-23
if(nHeight > 158000+((576*30)*2)) ret += blockValue / 20; //35.0% - 2014-12-23
if(nHeight > 158000+((576*30)*3)) ret += blockValue / 40; //37.5% - 2015-01-23
if(nHeight > 158000+((576*30)*4)) ret += blockValue / 40; //40.0% - 2015-02-23
if(nHeight > 158000+((576*30)*5)) ret += blockValue / 40; //42.5% - 2015-03-23
if(nHeight > 158000+((576*30)*6)) ret += blockValue / 40; //45.0% - 2015-04-23
if(nHeight > 158000+((576*30)*7)) ret += blockValue / 40; //47.5% - 2015-05-23
if(nHeight > 158000+((576*30)*9)) ret += blockValue / 40; //50.0% - 2015-07-23
if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; //52.5% - 2015-09-23
if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; //55.0% - 2015-11-23
if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; //57.5% - 2016-01-23
if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; //60.0% - 2016-03-23

w/ 209840 block we have 37.5% for the MNs it should be tomorrow BUT we have 207500 block now looking @ http://explorer.darkcoin.io/chain/Darkcoin it means we still have 2340 blocks to go.
 
Nice! I made an updated version - with block number already counted (which is more accurate than using dates):
Code:
if(nHeight > 158000)               ret += blockValue / 20; // 158000 - 25.0% - 2014-10-24
if(nHeight > 158000+((576*30)* 1)) ret += blockValue / 20; // 175280 - 30.0% - 2014-11-25
if(nHeight > 158000+((576*30)* 2)) ret += blockValue / 20; // 192560 - 35.0% - 2014-12-26
if(nHeight > 158000+((576*30)* 3)) ret += blockValue / 40; // 209840 - 37.5% - 2015-01-26
if(nHeight > 158000+((576*30)* 4)) ret += blockValue / 40; // 227120 - 40.0% - 2015-02-27
if(nHeight > 158000+((576*30)* 5)) ret += blockValue / 40; // 244400 - 42.5% - 2015-03-30
if(nHeight > 158000+((576*30)* 6)) ret += blockValue / 40; // 261680 - 45.0% - 2015-05-01
if(nHeight > 158000+((576*30)* 7)) ret += blockValue / 40; // 278960 - 47.5% - 2015-06-01
if(nHeight > 158000+((576*30)* 9)) ret += blockValue / 40; // 313520 - 50.0% - 2015-08-03
if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; // 348080 - 52.5% - 2015-10-05
if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; // 382640 - 55.0% - 2015-12-07
if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; // 417200 - 57.5% - 2016-02-08
if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; // 451760 - 60.0% - 2016-04-11
 
Last edited by a moderator:
Nice! I made an updated version - with block number already counted (which is more accurate than using dates):
Code:
if(nHeight > 158000) ret += blockValue / 20; //25.0% - 2014-10-23
if(nHeight > 158000+((576*30)*1)) ret += blockValue / 20; //  175280 - 30.0% - 2014-11-23
if(nHeight > 158000+((576*30)*2)) ret += blockValue / 20; //  192560 - 35.0% - 2014-12-23
if(nHeight > 158000+((576*30)*3)) ret += blockValue / 40; //  209840 - 37.5% - 2015-01-23
if(nHeight > 158000+((576*30)*4)) ret += blockValue / 40; //  227120 - 40.0% - 2015-02-23
if(nHeight > 158000+((576*30)*5)) ret += blockValue / 40; //  244400 - 42.5% - 2015-03-23
if(nHeight > 158000+((576*30)*6)) ret += blockValue / 40; //  261680 - 45.0% - 2015-04-23
if(nHeight > 158000+((576*30)*7)) ret += blockValue / 40; //  278960 - 47.5% - 2015-05-23
if(nHeight > 158000+((576*30)*9)) ret += blockValue / 40; //  313520 - 50.0% - 2015-07-23
if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; // 348080 - 52.5% - 2015-09-23
if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; // 382640 - 55.0% - 2015-11-23
if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; // 417200 - 57.5% - 2016-01-23
if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; // 451760 - 60.0% - 2016-03-23
Thnx UdjinM6.
 
According to the last 50K of blocks it's slightly less than 576 blocks per day on average, ~550 now. So I recalculated dates and updated previous post.
 
How about the miners who don't follow this trend by just not pay to any Masternode ?
Has nothing to do with the current structure of when rewards jump--it's block based, not based on how many blocks were successful in masternode payouts.
 
2 days left to hit 40% ! :grin::grin::grin:
 
Back
Top