Skip to content

Instantly share code, notes, and snippets.

@TheSin-
Created January 17, 2018 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheSin-/f0861b69d573be75daccbb39c1948f1d to your computer and use it in GitHub Desktop.
Save TheSin-/f0861b69d573be75daccbb39c1948f1d to your computer and use it in GitHub Desktop.
estimate future terracoin budget payout dates
#!/bin/bash
D0=$(TZ=UTC date --date="$(date --date="2017-10-23T20:07:35+0000")");
for block in `seq 1123200 21600 $((1101600 + (21600*48)))`;
do DD=$(TZ=UTC date --date="$(date --date="$D0") +763 hours +12 minutes");
D0=$DD;
echo "$block - $DD";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment