Skip to content

Commit

Permalink
Reset POS reward start at hardfork
Browse files Browse the repository at this point in the history
  • Loading branch information
projectmemetic committed Oct 23, 2018
1 parent a97a2a8 commit 02ae434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ int64_t nSubsidy = 20 * COIN;
// adopt the proof-of-work reward schedule when swap over to stake only
// this will pick up the current pow reward of 3.25 at fork height with halving
nSubsidy = 15 * COIN;
nSubsidy >>= ((nHeight - PEPE_REBRAND_HEIGHT) / 525600); // block reward halves once a year
nSubsidy >>= ((nHeight - PEPE_STAKEONLY_HEIGHT) / 525600); // block reward halves once a year

if(nSubsidy < 1 * COIN) // minimum 1 PEPE stake return
nSubsidy = 1 * COIN;
Expand Down

0 comments on commit 02ae434

Please sign in to comment.