From aea98c0b9286fca93230db8b6e6d00e0a7c45e8e Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Tue, 26 Mar 2019 22:00:07 -0700 Subject: [PATCH] Some docs for hush_supply --- contrib/hush_supply | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/hush_supply b/contrib/hush_supply index a807cf3dd..1095e841c 100755 --- a/contrib/hush_supply +++ b/contrib/hush_supply @@ -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) {