Some docs for hush_supply

This commit is contained in:
Jonathan "Duke" Leto
2019-03-26 22:00:07 -07:00
parent ddb364756c
commit aea98c0b92

View File

@@ -8,9 +8,11 @@ my $satoshis = 100_000_000;
my $amount = int(12.5*$satoshis);
my $halvings = 0;
# Usage: ./hush_supply &> supply.csv
# Use this to calculate when supply hits a certain value
#while ($supply <= 21_000_000*$satoshis) {
# Use this to calculat when block rewards end
# Use this to calculate when block rewards end
while ($halvings <= 64 && $amount >= 1) {
$block++;
if ($block < 5) {