Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. H = Hashrate (hashes / second)
  2. D = Difficulty (Reference for values below)
  3. B = Reward per Block (Reference for value below)
  4. N = Number of days per month (default = 30)
  5. S = Number of seconds per day (S = 60 * 60 * 24 = 86400)
  6.  
  7. H = 21,990,232,555,520 h/s (~= 20TH/s)
  8. D = 47,427,554,950.648
  9. B = 25
  10. N = 30
  11. S = 86400
  12.  
  13. $ python -c "print (30*21990232555520*25*86400)/(47427554950.648*2**32)"
  14. $ 6.99542703277
  15.  
  16. time = difficulty * 2**32 / hashrate
Add Comment
Please, Sign In to add comment