Advertisement
Guest User

Untitled

a guest
Nov 20th, 2014
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if(pindexBest->nHeight == 0)
  2. {
  3. nSubsidy = 50 * COIN; (ICO Premine)
  4. }
  5. else if(pindexBest->nHeight < 1440)
  6. {
  7. nSubsidy = 0.001 * COIN;
  8. }
  9. else if(pindexBest->nHeight < 2880)
  10. {
  11. nSubsidy = 0.005 * COIN;
  12. }
  13. else if(pindexBest->nHeight < 4320)
  14. {
  15. nSubsidy = 0.01 * COIN;
  16. }
  17. else if(pindexBest->nHeight < 5760)
  18. {
  19. nSubsidy = 0.01872222 * COIN;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement