Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

Commit

Permalink
Version bump to 5.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbandi committed Apr 23, 2017
1 parent 47938c3 commit 0020210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_maj], [5])
m4_define([v_min], [6])
m4_define([v_mic], [0])
m4_define([v_mic], [1])
m4_define([v_rev], [nicehash])
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic-v_rev])], [m4_define([v_ver], [v_maj.v_min.v_mic])])
Expand Down

2 comments on commit 0020210

@runhome
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

def max_money():
# 50 uBTC = 00 000 000 Satoshis
current_reward = 50 * 10**8
total = 0
while current_reward > 0:
total += reward_interval * current_reward
current_reward /= 2
return total

print "Total BTC to ever be created:", max_money(), "Satoshis"

@runhome
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original block reward for miners was 50 BTC

start_block_reward = 50

210000 is around every 4 years with a 10 minute block interval

reward_interval = 210000

def max_money():
# 50 uBTC = 00 000 000 Satoshis
current_reward = 50 * 10**8
total = 0
while current_reward > 0:
total += reward_interval * current_reward
current_reward /= 2
return total

print "Total BTC to ever be created:", max_money(), "Satoshis"

Please sign in to comment.